8 lines
176 B
Bash
8 lines
176 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
python -m paddle.distributed.launch \
|
||
|
--gpus="0,1,2,3" \
|
||
|
tools/train.py \
|
||
|
-c ./configs/ResNet/ResNet50.yaml \
|
||
|
-o print_interval=10
|