mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 04:59:03 +08:00
11 lines
272 B
Bash
11 lines
272 B
Bash
#!/usr/bin/env bash
|
|
|
|
CONFIG=$1
|
|
CHECKPOINT=$2
|
|
GPUS=$3
|
|
PORT=${PORT:-29500}
|
|
|
|
PYTHONPATH="$(dirname $0)/..":$PYTHONPATH \
|
|
python -m torch.distributed.launch --nproc_per_node=$GPUS --master_port=$PORT \
|
|
$(dirname "$0")/test.py $CONFIG $CHECKPOINT --launcher pytorch ${@:4}
|