DeepLearningExamples/PyTorch/Detection/SSD/examples/SSD300_A100_FP16_8GPU.sh
2020-07-07 23:41:00 +02:00

5 lines
341 B
Bash

# This script launches SSD300 training in FP16 on 8 GPUs using 1024 batch size (128 per GPU)
# Usage ./SSD300_FP16_8GPU.sh <path to this repository> <path to dataset> <additional flags>
python -m torch.distributed.launch --nproc_per_node=8 $1/main.py --backbone resnet50 --learning-rate 2.7e-3 --warmup 1200 --bs 128 --amp --data $2 ${@:3}