File size: 194 Bytes
12f772a |
1 2 3 4 5 6 7 |
#!/bin/bash
work_path=$(dirname $0)
python -m torch.distributed.launch --nproc_per_node=8 main.py \
--config $work_path/config.yaml --launcher pytorch \
--load-iter 10000 \
--resume
|