mirror of
https://github.com/PaddlePaddle/PaddleClas.git
synced 2025-06-03 21:55:06 +08:00
10 lines
219 B
Bash
Executable File
10 lines
219 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export PYTHONPATH=$PWD:$PYTHONPATH
|
|
|
|
python -m paddle.distributed.launch \
|
|
--selected_gpus="0,1,2,3" \
|
|
--log_dir=log_ResNet50 \
|
|
tools/train.py \
|
|
-c ./configs/ResNet/ResNet50.yaml
|