-
Notifications
You must be signed in to change notification settings - Fork 3
/
test_vcoco_official.sh
96 lines (91 loc) · 3.74 KB
/
test_vcoco_official.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# ### RLIP-ParSeDA (R50)
# # generate_vcoco_official for RLIP-ParSeDA
# python generate_vcoco_official.py \
# --param_path /Path/To/logs/RLIP_PDA_v2_VCOCO_R50_VGCOO365_COO365det_RQL_LSE_RPL_20e_L1_20e/checkpoint0019.pth \
# --save_path /Path/To/jacob/VCOCO_pickle/RLIPv2/RLIP_PDA_v2_VCOCO_R50_VGCOCOO365.pickle \
# --hoi_path /Path/To/data/v-coco \
# --batch_size 16 \
# --num_obj_classes 81 \
# --num_verb_classes 29 \
# --dec_layers 3 \
# --enc_layers 6 \
# --num_queries 200 \
# --num_feature_levels 4 \
# --with_box_refine \
# --RLIP_ParSeDA_v2 \
# --num_patterns 0 \
# --pe_temperatureH 20 \
# --pe_temperatureW 20 \
# --dim_feedforward 2048 \
# --dropout 0.0 \
# --use_no_obj_token \
# --fusion_type GLIP_attn \
# --gating_mechanism VXAc \
# --verb_query_tgt_type vanilla_MBF \
# --fusion_interval 2 \
# --fusion_last_vis \
# --lang_aux_loss \
# # --param_path /Path/To/logs/RLIP_PDA_v2_VCOCO_R50_VG_RQL_LSE_RPL_20e_L1_20e/checkpoint.pth \
# # --save_path /Path/To/jacob/VCOCO_pickle/RLIPv2/RLIP_PDA_v2_VCOCO_R50_VG.pickle \
# # --param_path /Path/To/logs/RLIP_PDA_v2_VCOCO_R50_VGCOCO_RQL_LSE_RPL_20e_L1_20e/checkpoint0019.pth \
# # --save_path /Path/To/jacob/VCOCO_pickle/RLIPv2/RLIP_PDA_v2_VCOCO_R50_VGCOCO.pickle \
# # --param_path /Path/To/logs/RLIP_PDA_v2_VCOCO_R50_VGCOO365_COO365det_RQL_LSE_RPL_20e_L1_20e/checkpoint0019.pth \
# # --save_path /Path/To/jacob/VCOCO_pickle/RLIPv2/RLIP_PDA_v2_VCOCO_R50_VGCOCOO365.pickle \
# ### RLIP-ParSeDA (SwinT)
# # generate_vcoco_official for RLIP-ParSeDA
# python generate_vcoco_official.py \
# --param_path /Path/To/logs/RLIP_PDA_v2_VCOCO_SwinT_VGCOCOO365_RQL_LSE_RPL_20e_L1_20e/checkpoint0019.pth \
# --save_path /Path/To/jacob/VCOCO_pickle/RLIPv2/RLIP_PDA_v2_VCOCO_SwinT_VGCOCOO365.pickle \
# --hoi_path /Path/To/data/v-coco \
# --backbone swin_tiny \
# --batch_size 16 \
# --num_obj_classes 81 \
# --num_verb_classes 29 \
# --dec_layers 3 \
# --enc_layers 6 \
# --num_queries 200 \
# --num_feature_levels 4 \
# --with_box_refine \
# --RLIP_ParSeDA_v2 \
# --num_patterns 0 \
# --pe_temperatureH 20 \
# --pe_temperatureW 20 \
# --dim_feedforward 2048 \
# --dropout 0.0 \
# --drop_path_rate 0.2 \
# --use_no_obj_token \
# --fusion_type GLIP_attn \
# --gating_mechanism VXAc \
# --verb_query_tgt_type vanilla_MBF \
# --fusion_interval 2 \
# --fusion_last_vis \
# --lang_aux_loss \
### RLIP-ParSeDA (SwinL)
# generate_vcoco_official for RLIP-ParSeDA
python generate_vcoco_official.py \
--param_path /Path/To/logs/RLIP_PDA_v2_VCOCO_SwinL_VGCOCOO365_RQL_LSE_RPL_20e_L1_20e/checkpoint0019.pth \
--save_path /Path/To/jacob/VCOCO_pickle/RLIPv2/RLIP_PDA_v2_VCOCO_SwinL_VGCOCOO365.pickle \
--hoi_path /Path/To/data/v-coco \
--backbone swin_large \
--batch_size 16 \
--num_obj_classes 81 \
--num_verb_classes 29 \
--dec_layers 3 \
--enc_layers 6 \
--num_queries 200 \
--num_feature_levels 4 \
--with_box_refine \
--RLIP_ParSeDA_v2 \
--num_patterns 0 \
--pe_temperatureH 20 \
--pe_temperatureW 20 \
--dim_feedforward 2048 \
--dropout 0.0 \
--drop_path_rate 0.5 \
--use_no_obj_token \
--fusion_type GLIP_attn \
--gating_mechanism VXAc \
--verb_query_tgt_type vanilla_MBF \
--fusion_interval 2 \
--fusion_last_vis \
--lang_aux_loss \