Linyiqi 0193ce1443
Update resource & add mim & update tools script (#51)
* update resource & env & fix logger issue

* update mim
2021-11-12 23:27:20 +08:00

10 lines
247 B
Bash

#!/usr/bin/env bash
CONFIG=$1
GPUS=$2
PORT=${PORT:-29500}
PYTHONPATH="$(dirname $0)/..":$PYTHONPATH \
python -m torch.distributed.launch --nproc_per_node=$GPUS --master_port=$PORT \
$(dirname "$0")/train.py $CONFIG --launcher pytorch ${@:3}