mmselfsup/tools/dist_test.sh

18 lines
289 B
Bash
Raw Normal View History

2020-06-29 00:10:34 +08:00
#!/bin/bash
set -x
CFG=$1
GPUS=$2
CHECKPOINT=$3
PORT=${PORT:-29500}
WORK_DIR="$(dirname $CHECKPOINT)/"
# test
python -m torch.distributed.launch --nproc_per_node=$GPUS --master_port=$PORT \
tools/test.py \
$CFG \
$CHECKPOINT \
--work_dir $WORK_DIR --launcher="pytorch"