mirror of
https://github.com/PaddlePaddle/PaddleClas.git
synced 2025-06-03 21:55:06 +08:00
12 lines
300 B
Bash
12 lines
300 B
Bash
#!/usr/bin/env bash
|
|
|
|
export CUDA_VISIBLE_DEVICES="0,1,2,3"
|
|
export FLAGS_fraction_of_gpu_memory_to_use=0.80
|
|
|
|
python3.7 -m paddle.distributed.launch \
|
|
--gpus="0,1,2,3" \
|
|
tools/static/train.py \
|
|
-c ./configs/ResNet/ResNet50.yaml \
|
|
-o print_interval=10 \
|
|
-o use_dali=True
|