2021-07-15 10:30:07 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-01-11 16:48:03 +08:00
|
|
|
export CUDA_VISIBLE_DEVICES="0,1,2,3"
|
2021-07-15 10:30:07 +08:00
|
|
|
|
|
|
|
python3.7 -m paddle.distributed.launch \
|
2022-01-11 16:48:03 +08:00
|
|
|
--gpus="0,1,2,3" \
|
2021-10-12 15:38:02 +08:00
|
|
|
ppcls/static/train.py \
|
2022-01-11 16:48:03 +08:00
|
|
|
-c ./ppcls/configs/ImageNet/ResNet/ResNet50_amp_O1.yaml
|