File size: 338 Bytes
2cd560a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/usr/bin/env bash
# ------------------------------------------------------------------------
# Copyright (c) 2022 megvii-research. All Rights Reserved.
# ------------------------------------------------------------------------
set -x
args=$(cat $1)
export CUDA_LAUNCH_BLOCKING=1
python main.py ${args} --output_dir /tmp/clip_mot_v2
|