-
Notifications
You must be signed in to change notification settings - Fork 1
/
run_tcl_map_MIntRec.sh
41 lines (39 loc) · 1.42 KB
/
run_tcl_map_MIntRec.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
#!/usr/bin/bash
for method in 'tcl_map'
do
for text_backbone in 'bert-base-uncased'
do
for ood_detection_method in 'ma'
do
for video_feats in 'swin-full'
do
for audio_feats in 'wavlm'
do
python run.py \
--dataset 'MIntRec' \
--ood_dataset 'MIntRec-OOD' \
--data_path '/home/sharing/Datasets' \
--logger_name ${method}_${ood_detection_method} \
--multimodal_method $method \
--method ${method}\
--ablation_type 'full' \
--dialogue_mode 'single_turn' \
--ood_detection_method $ood_detection_method \
--test_ood \
--test_mode 'ood_det' \
--train \
--tune \
--save_results \
--save_model \
--output_path '/home/sharing/single_turn/tcl_map_MIntRec_1' \
--gpu_id '1' \
--video_feats $video_feats \
--audio_feats $audio_feats \
--text_backbone $text_backbone \
--config_file_name ${method}_MIntRec \
--results_file_name 'results_TCL_MAP_MIntRec_719.csv'
done
done
done
done
done