-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.sh
237 lines (206 loc) · 33.9 KB
/
run.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# with uncertainty 0
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 1
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 0.5
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_0.5 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 0.25
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_0.25 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 2
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_2 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 4
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_4 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 0
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_0 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 1
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 0.5
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_0.5 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 0.25
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_0.25 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 2
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_2 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 4
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_4 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 0
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 1
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 0.5
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.5 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 0.25
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.25 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 2
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_2 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 4
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 0
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dmse_alpha_0 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 1
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dmse_alpha_1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 0.5
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dmse_alpha_0.5 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 0.25
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dmse_alpha_0.25 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 2
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dmse_alpha_2 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 4
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dmse_alpha_4 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 0
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_0 --lambda3 1 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 1
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_1 --lambda3 1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 0.5
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_0.5 --lambda3 1 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 0.25
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_0.25 --lambda3 1 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 2
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_2 --lambda3 1 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 4
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_4 --lambda3 1 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 0
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 1
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 0.5
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_0.5 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 0.25
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_0.25 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 2
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_2 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# with uncertainty 4
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_alpha_4 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 0
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 1
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 0.5
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.5 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 0.25
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.25 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 2
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_2 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 4
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 0
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_0 --lambda3 1 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 1
CUDA_VISIBLE_DEVICES=7 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_1 --lambda3 1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 0.5
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_0.5 --lambda3 1 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 0.25
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_0.25 --lambda3 1 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 2
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_2 --lambda3 1 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# dmse with uncertainty 4
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_1_lr_3e-5_dmse_alpha_4 --lambda3 1 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 0
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_0 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 1
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 0.5
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_0.5 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 0.25
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_0.25 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 2
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_2 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# no_detach with uncertainty 4
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_nod_alpha_4 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# multi seed
# detach_all with uncertainty 0
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0 --seed 0 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0 --seed 1 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0 --seed 2 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0 --seed 3 --alpha 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 1
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_1 --seed 0 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_1 --seed 1 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_1 --seed 2 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_1 --seed 3 --alpha 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 2
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_2 --seed 0 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_2 --seed 1 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_2 --seed 2 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=7 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_2 --seed 3 --alpha 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 4
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4 --seed 0 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4 --seed 1 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4 --seed 2 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4 --seed 3 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 8
CUDA_VISIBLE_DEVICES=7 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_8 --seed 0 --alpha 8 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_8 --seed 1 --alpha 8 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_8 --seed 2 --alpha 8 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_8 --seed 3 --alpha 8 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 0.5
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.5 --seed 0 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.5 --seed 1 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.5 --seed 2 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.5 --seed 3 --alpha 0.5 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# detach_all with uncertainty 0.25
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.25 --seed 0 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.25 --seed 1 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=7 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.25 --seed 2 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_0.25 --seed 3 --alpha 0.25 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# for ML_MSE
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_ML --seed 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_ML --seed 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_ML --seed 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_ML --seed 3 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_ML --seed 3552 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# for Guide
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_Guide --seed 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_Guide --seed 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=7 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_Guide --seed 2 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_Guide --seed 3 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=1 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_Guide --seed 3552 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# trans_u
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4_trans_u --seed 0 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4_trans_u --seed 1 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4_trans_u --seed 2 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4_trans_u --seed 3 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4_trans_u --seed 3552 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# wo USCL
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_neg_con_USCL_0.01_lr_3e-5_no_USCL --lambda3 0 --seed 0 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_neg_con_USCL_0.01_lr_3e-5_no_USCL --lambda3 0 --seed 1 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_neg_con_USCL_0.01_lr_3e-5_no_USCL --lambda3 0 --seed 2 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_no_USCL --lambda3 0 --seed 3 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=7 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_neg_con_USCL_0.01_lr_3e-5_no_USCL --lambda3 0 --seed 3552 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# for ANT1.3 with USCL
CUDA_VISIBLE_DEVICES=0 python main.py --dataset-name ActivityNet1.3 --path-dataset /home/jiachang/TAL_dataset/ActivityNet1.3/ --num-class 200 --use-model Model_TB_ant --dataset Ant13_SampleDataset --t 9 --max-seqlen 60 --k 10 --lr 3e-5 --model-name Model_TB_ant_MIL_0_neg_con_USCL_k_10_alpha_4 --seed 0 --gamma-oic 0 --alpha 4
CUDA_VISIBLE_DEVICES=1 python main.py --dataset-name ActivityNet1.3 --path-dataset /home/jiachang/TAL_dataset/ActivityNet1.3/ --num-class 200 --use-model Model_TB_ant --dataset Ant13_SampleDataset --t 9 --max-seqlen 60 --k 10 --lr 3e-5 --model-name Model_TB_ant_MIL_1_neg_con_USCL_k_10_alpha_4 --seed 1 --gamma-oic 0 --alpha 4
CUDA_VISIBLE_DEVICES=2 python main.py --dataset-name ActivityNet1.3 --path-dataset /home/jiachang/TAL_dataset/ActivityNet1.3/ --num-class 200 --use-model Model_TB_ant --dataset Ant13_SampleDataset --t 9 --max-seqlen 60 --k 10 --lr 3e-5 --model-name Model_TB_ant_MIL_2_neg_con_USCL_k_10_alpha_4 --seed 2 --gamma-oic 0 --alpha 4
CUDA_VISIBLE_DEVICES=3 python main.py --dataset-name ActivityNet1.3 --path-dataset /home/jiachang/TAL_dataset/ActivityNet1.3/ --num-class 200 --use-model Model_TB_ant --dataset Ant13_SampleDataset --t 9 --max-seqlen 60 --k 10 --lr 3e-5 --model-name Model_TB_ant_MIL_3_neg_con_USCL_k_10_alpha_4 --seed 3 --gamma-oic 0 --alpha 4
CUDA_VISIBLE_DEVICES=7 python main.py --dataset-name ActivityNet1.3 --path-dataset /home/jiachang/TAL_dataset/ActivityNet1.3/ --num-class 200 --use-model Model_TB_ant --dataset Ant13_SampleDataset --t 9 --max-seqlen 60 --k 10 --lr 3e-5 --model-name Model_TB_ant_MIL_3552_neg_con_USCL_k_10_alpha_4 --seed 3552 --gamma-oic 0 --alpha 4
# for ANT1.2 with USCL
CUDA_VISIBLE_DEVICES=0 python main.py --dataset-name ActivityNet1.2 --path-dataset /home/share/fating/ProcessDataset/ActivityNet --num-class 100 --use-model Model_TB_ant --dataset AntSampleDataset --t 15 --max-seqlen 60 --k 4 --lr 3e-5 --model-name Model_TB_ant_MIL_neg_con_USCL_k_4_t_15_alpha_4_0 --seed 0 --batch-size 10
CUDA_VISIBLE_DEVICES=1 python main.py --dataset-name ActivityNet1.2 --path-dataset /home/share/fating/ProcessDataset/ActivityNet --num-class 100 --use-model Model_TB_ant --dataset AntSampleDataset --t 15 --max-seqlen 60 --k 4 --lr 3e-5 --model-name Model_TB_ant_MIL_neg_con_USCL_k_4_t_15_alpha_4_1 --seed 1 --batch-size 10
CUDA_VISIBLE_DEVICES=2 python main.py --dataset-name ActivityNet1.2 --path-dataset /home/share/fating/ProcessDataset/ActivityNet --num-class 100 --use-model Model_TB_ant --dataset AntSampleDataset --t 15 --max-seqlen 60 --k 4 --lr 3e-5 --model-name Model_TB_ant_MIL_neg_con_USCL_k_4_t_15_alpha_4_2 --seed 2 --batch-size 10
CUDA_VISIBLE_DEVICES=3 python main.py --dataset-name ActivityNet1.2 --path-dataset /home/share/fating/ProcessDataset/ActivityNet --num-class 100 --use-model Model_TB_ant --dataset AntSampleDataset --t 15 --max-seqlen 60 --k 4 --lr 3e-5 --model-name Model_TB_ant_MIL_neg_con_USCL_k_4_t_15_alpha_4_3 --seed 3 --batch-size 10
CUDA_VISIBLE_DEVICES=4 python main.py --dataset-name ActivityNet1.2 --path-dataset /home/share/fating/ProcessDataset/ActivityNet --num-class 100 --use-model Model_TB_ant --dataset AntSampleDataset --t 15 --max-seqlen 60 --k 4 --lr 3e-5 --model-name Model_TB_ant_MIL_neg_con_USCL_k_4_t_15_alpha_4_3552 --seed 3552 --batch-size 10
# test for store value
CUDA_VISIBLE_DEVICES=0 python test.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_dall_alpha_4 --seed 3 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=7 python test.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_neg_con_USCL_0.01_lr_3e-5_no_USCL --lambda3 0 --seed 3552 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# train for ablation study
# MIL only
CUDA_VISIBLE_DEVICES=2 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_lr_3e-5 --seed 3 --lambda2 0 --lambda3 0 --lambda4 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# MIL+neg
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_Neg_lr_3e-5 --seed 3 --lambda2 0 --lambda3 0 --lambda4 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# MIL+neg+VCL w/o SCL
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_Neg_VCL_lr_3e-5 --seed 3 --lambda2 1 --lambda3 0 --lambda4 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# MIL+neg+SCL w/o VCL
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_Neg_USCL_lr_3e-5 --seed 3 --lambda2 0 --lambda3 0.01 --lambda4 1 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# MIL+VCL+SCL w/o Neg
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_VCL_USCL_lr_3e-5 --seed 3 --lambda2 1 --lambda3 0.01 --lambda4 0 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# MIL+VCL
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_VCL_0.01_lr_3e-5 --lambda4 0 --lambda3 0 --seed 0 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=4 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_VCL_0.01_lr_3e-5 --lambda4 0 --lambda3 0 --seed 1 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_VCL_0.01_lr_3e-5 --lambda4 0 --lambda3 0 --seed 2 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=5 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_VCL_0.01_lr_3e-5 --lambda4 0 --lambda3 0 --seed 3 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_VCL_0.01_lr_3e-5 --lambda4 0 --lambda3 0 --seed 3552 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
# MIL+USCL
CUDA_VISIBLE_DEVICES=6 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_0_MIL_USCL_0.01_lr_3e-5 --lambda4 0 --lambda2 0 --seed 0 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=7 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_1_MIL_USCL_0.01_lr_3e-5 --lambda4 0 --lambda2 0 --seed 1 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=7 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_2_MIL_USCL_0.01_lr_3e-5 --lambda4 0 --lambda2 0 --seed 2 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=3 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3_MIL_USCL_0.01_lr_3e-5 --lambda4 0 --lambda2 0 --seed 3 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14
CUDA_VISIBLE_DEVICES=0 python main.py --use-model Model_TB --dataset-name Thumos14reduced --model-name Model_TB_seq_560_3552_MIL_USCL_0.01_lr_3e-5 --lambda4 0 --lambda2 0 --seed 3552 --alpha 4 --gamma-oic 0 --path-dataset /home/jiachang/TAL_dataset/Thumos14