21 lines
472 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -x
CFG=$1
CHECKPOINT=$2
GPUS=$3
PY_ARGS=${@:4}
# set work_dir according to config path and pretrained model to distinguish different models
WORK_DIR="$(echo ${CFG%.*} | sed -e "s/configs/work_dirs/g")/$(echo $PRETRAIN | rev | cut -d/ -f 1 | rev)"
PYTHONPATH="$(dirname $0)/..":$PYTHONPATH \
mim test mmdet \
$CFG \
--checkpoint $CHECKPOINT \
--launcher pytorch \
-G $GPUS \
--work-dir $WORK_DIR \
--cfg-options $PY_ARGS