mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* add test tutorial * remote torch/torchvision from requirements * update getting started * rename drop_out_ratio -> dropout_ratio
10 lines
271 B
Bash
Executable File
10 lines
271 B
Bash
Executable File
#!/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}
|