Skip to content
Snippets Groups Projects
Forked from nikhil_rayaprolu / food-round2
140 commits behind the upstream repository.
dist_train.sh 192 B
#!/usr/bin/env bash

PYTHON=${PYTHON:-"python"}

CONFIG=$1
GPUS=$2

$PYTHON -m torch.distributed.launch --nproc_per_node=$GPUS \
    $(dirname "$0")/train.py $CONFIG --launcher pytorch ${@:3}