-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.sh
More file actions
517 lines (498 loc) · 18 KB
/
Copy pathrun.sh
File metadata and controls
517 lines (498 loc) · 18 KB
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
for data in 'Industrial_and_Scientific' 'Prime_Pantry' 'Musical_Instruments' 'Arts_Crafts_and_Sewing' 'Video_Games'
do
gpu_num=4
if [ "${data}" == 'Arts_Crafts_and_Sewing' ]; then
epochs=10
lr=1.2e-4
sd=0.4
btz=10
all_steps=56083
klws=(0.5)
fas=(0.7)
fts=(1.0)
lrs=(1.6e-4)
elif [ "${data}" == 'Industrial_and_Scientific' ]; then
epochs=10
lr=1.3e-4
sd=0.5
btz=10
all_steps=10975
klws=(0.7)
fas=(0.5)
fts=(1.0)
lrs=(1.5e-4)
elif [ "${data}" == 'Musical_Instruments' ]; then
epochs=8
lr=1.2e-4
sd=0.4
btz=10
all_steps=27518
klws=(0.7)
fas=(0.7)
fts=(1.0)
lrs=(1.5e-4)
elif [ "${data}" == 'Prime_Pantry' ]; then
epochs=10
lr=1.3e-4
sd=0.5
btz=10
all_steps=14177
klws=(0.3)
fas=(0.3)
fts=(1.0)
lrs=(1.5e-4)
elif [ "${data}" == 'Video_Games' ]; then
epochs=12
lr=1.2e-4
sd=0.4
btz=10
all_steps=55126
klws=(0.3)
fas=(0.5)
fts=(1.2)
lrs=(1.5e-4)
fi
models=("deepseek-ai/DeepSeek-R1-Distill-Llama-8B")
lf=1
ld=0.5
max_item_num=10
hdf=8
hd=0.05
wd=1e-2
for kt in 1.0;do
for ft in "${fts[@]}";do
for fa in "${fas[@]}";do
for klw in "${klws[@]}";do
for lr in "${lrs[@]}"; do
for model in "${models[@]}"; do
processed_model="${model//\//-}"
warmup_steps=$(awk "BEGIN {print int($all_steps / ($gpu_num * $btz) * $epochs * 0.06 + 0.5)}")
if [ -d "./output/${data}/${processed_model}_all_klw${klw}_fa${fa}" ]; then
echo "${data} ${processed_model}_all_klw${klw}_fa${fa} exists"
else
CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
--suffix all_klw${klw}_fa${fa} \
--kl_loss_weight ${klw} \
--kl_temperature ${kt} \
--fusion_temperature ${ft} \
--fusion_alpha ${fa} \
--use_gate \
--use_small_model \
--skip_valid 0 \
--weight_decay ${wd} \
--hidden_dropout ${hd} \
--hd_frequency ${hdf} \
--score_dropout ${sd} \
--adapter_dropout ${ld} \
--lora_frequency ${lf} \
--use_lora \
--mixed_precision bf16 \
--learning_rate ${lr} \
--max_item_num ${max_item_num} \
--patient 1 \
--model_name_or_path ${model} \
--fix_backbone \
--fix_emb \
--batch_size ${btz} \
--num_train_epochs ${epochs} \
--warmup_steps ${warmup_steps} \
--dataset ${data}
fi
# if [ -d "./output/${data}/${processed_model}_only_text" ]; then
# echo "${data} ${processed_model}_only_text exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix only_text \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_only_id" ]; then
# echo "${data} ${processed_model}_only_id exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix only_id \
# --only_id \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_early_fusion" ]; then
# echo "${data} ${processed_model}_early_fusion exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix early_fusion \
# --early_fusion \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_fusion_before_loss" ]; then
# echo "${data} ${processed_model}_fusion_before_loss exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix fusion_before_loss \
# --fusion_before_loss \
# --kl_loss_weight ${klw} \
# --kl_temperature ${kt} \
# --fusion_temperature ${ft} \
# --fusion_alpha ${fa} \
# --use_gate \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_random_init" ]; then
# echo "${data} ${processed_model}_random_init exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix random_init \
# --method_of_preference random \
# --kl_loss_weight ${klw} \
# --kl_temperature ${kt} \
# --fusion_temperature ${ft} \
# --fusion_alpha ${fa} \
# --use_gate \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_oneLoRA_1" ]; then
# echo "${data} ${processed_model}_oneLoRA_1 exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix oneLoRA_1 \
# --alternating_learning 0 \
# --kl_loss_weight ${klw} \
# --kl_temperature ${kt} \
# --fusion_temperature ${ft} \
# --fusion_alpha ${fa} \
# --use_gate \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_oneLoRA_2" ]; then
# echo "${data} ${processed_model}_oneLoRA_2 exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix oneLoRA_2 \
# --lora_r 16 \
# --lora_alpha 64 \
# --alternating_learning 0 \
# --kl_loss_weight ${klw} \
# --kl_temperature ${kt} \
# --fusion_temperature ${ft} \
# --fusion_alpha ${fa} \
# --use_gate \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_MainId" ]; then
# echo "${data} ${processed_model}_MainId exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix MainId \
# --fusion_type 'id' \
# --kl_loss_weight ${klw} \
# --kl_temperature ${kt} \
# --fusion_temperature ${ft} \
# --fusion_alpha ${fa} \
# --use_gate \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_both" ]; then
# echo "${data} ${processed_model}_both exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix both \
# --fusion_type 'both' \
# --kl_loss_weight ${klw} \
# --kl_temperature ${kt} \
# --fusion_temperature ${ft} \
# --fusion_alpha ${fa} \
# --use_gate \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_two_score" ]; then
# echo "${data} ${processed_model}_two_score exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix two_score \
# --use_two_score \
# --kl_loss_weight ${klw} \
# --kl_temperature ${kt} \
# --fusion_temperature ${ft} \
# --fusion_alpha ${fa} \
# --use_gate \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_SASRec_${psize}" ]; then
# echo "${data} ${processed_model}_SASRec_${psize} exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix SASRec_${psize} \
# --method_of_preference SASRec \
# --preference_dim ${psize} \
# --kl_loss_weight ${klw} \
# --kl_temperature ${kt} \
# --fusion_temperature ${ft} \
# --fusion_alpha ${fa} \
# --use_gate \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
# if [ -d "./output/${data}/${processed_model}_GRU4Rec_${psize}" ]; then
# echo "${data} ${processed_model}_GRU4Rec_${psize} exists"
# else
# CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=$gpu_num --master_port=29105 src/main.py \
# --suffix GRU4Rec_${psize} \
# --method_of_preference GRU4Rec \
# --preference_dim ${psize} \
# --kl_loss_weight ${klw} \
# --kl_temperature ${kt} \
# --fusion_temperature ${ft} \
# --fusion_alpha ${fa} \
# --use_gate \
# --use_small_model \
# --skip_valid 0 \
# --weight_decay ${wd} \
# --hidden_dropout ${hd} \
# --hd_frequency ${hdf} \
# --score_dropout ${sd} \
# --adapter_dropout ${ld} \
# --lora_frequency ${lf} \
# --use_lora \
# --mixed_precision bf16 \
# --learning_rate ${lr} \
# --max_item_num ${max_item_num} \
# --patient 1 \
# --model_name_or_path ${model} \
# --fix_backbone \
# --fix_emb \
# --batch_size ${btz} \
# --num_train_epochs ${epochs} \
# --warmup_steps ${warmup_steps} \
# --dataset ${data}
# fi
done
done
done
done
done
done
done
# CUDA_VISIBLE_DEVICES=3 torchrun --nproc_per_node=1 --master_port=29105 src/main.py \
# --suffix debug \
# --bo_percent 0.25 \
# --bo_num_trials 3 \
# --valid_metric MRR \
# --debug \
# --skip_valid 0 \
# --use_gate \
# --use_context_mask \
# --use_small_model \
# --warmup_steps 10 \
# --down_size 96 \
# --model_name_or_path facebook/opt-125m \
# --fix_backbone \
# --fix_emb \
# --adapter_mode 1 \
# --houlsby_mode 0 \
# --batch_size 2 \
# --num_train_epochs 10 \
# --dataset 'Prime_Pantry'