set -x | |
GPUS=${GPUS:-8} | |
PORT=${PORT:-29500} | |
if [ $GPUS -lt 8 ]; then | |
GPUS_PER_NODE=${GPUS_PER_NODE:-$GPUS} | |
else | |
GPUS_PER_NODE=${GPUS_PER_NODE:-8} | |
fi | |
CPUS_PER_TASK=${CPUS_PER_TASK:-5} | |
OUTPUT_DIR=$1 | |
PY_ARGS=${@:2} # Any other arguments | |
# train | |
PYTHONPATH="$(dirname $0)/..":$PYTHONPATH \ | |
python3 -m torch.distributed.launch --nproc_per_node=${GPUS_PER_NODE} --master_port=${PORT} --use_env \ | |
main.py --with_box_refine --binary --freeze_text_encoder \ | |
--output_dir=${OUTPUT_DIR} ${PY_ARGS} | |
# test | |
CHECKPOINT=${OUTPUT_DIR}/checkpoint.pth | |
python3 inference_ytvos.py --with_box_refine --binary --freeze_text_encoder \ | |
--resume=${CHECKPOINT} ${PY_ARGS} | |