-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheval_vos.sh
37 lines (32 loc) · 1.24 KB
/
eval_vos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
exp="mits"
config=$exp
exp_name="mits_R50_MITS"
ckpt_step=100000
ckpt_path="./pretrain_models/mits.pth"
gpu_num="4"
dataset="youtubevos2019"
split="val_all_frames"
python tools/eval.py --ema --exp_name ${exp} --config ${config}\
--dataset ${dataset} --split ${split} --gpu_num ${gpu_num} --ckpt_path $ckpt_path --ckpt_step $ckpt_step\
--long_gap 10 --short_gap 3 --long_max 10
dataset="davis2017"
split="val"
python tools/eval.py --ema --exp_name ${exp} --config ${config}\
--dataset ${dataset} --split ${split} --gpu_num ${gpu_num} --ckpt_path $ckpt_path --ckpt_step $ckpt_step\
--long_gap 10 --short_gap 3 --long_max 10
exp="mits_box"
config=$exp
exp_name="mits_R50_MITS"
ckpt_step=100000
ckpt_path="./pretrain_models/mits_box.pth"
gpu_num="4"
dataset="youtubevos2019"
split="val_all_frames"
python tools/eval.py --ema --exp_name ${exp} --config ${config}\
--dataset ${dataset} --split ${split} --gpu_num ${gpu_num} --ckpt_path $ckpt_path --ckpt_step $ckpt_step\
--long_gap 10 --short_gap 3 --long_max 10
dataset="davis2017"
split="val"
python tools/eval.py --ema --exp_name ${exp} --config ${config}\
--dataset ${dataset} --split ${split} --gpu_num ${gpu_num} --ckpt_path $ckpt_path --ckpt_step $ckpt_step\
--long_gap 10 --short_gap 3 --long_max 10