-
Notifications
You must be signed in to change notification settings - Fork 1
/
run_sccl.sh
36 lines (36 loc) · 1.32 KB
/
run_sccl.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
for method in 'sccl'
do
for dataset in 'MIntRec'
do
for text_backbone in 'bert-base-uncased'
do # for video_feats in 'swin-roi'
for video_feats in 'resnet-50'
do
for audio_feats in 'wav2vec2'
# for audio_feats in 'wavlm_feats'
do
python run.py \
--dataset $dataset \
--ood_dataset 'MIntRec-OOD' \
--data_path '/home/sharing/Datasets' \
--logger_name ${method} \
--multimodal_method $method \
--method ${method} \
--data_mode 'multi-class' \
--dialogue_mode 'single_turn' \
--clustering \
--tune \
--train \
--save_results \
--output_path '/home/sharing/disk1/zhoushihao/zhou/clustering' \
--gpu_id '1' \
--video_feats $video_feats \
--audio_feats $audio_feats \
--text_backbone $text_backbone \
--config_file_name ${method}_MIntRec \
--results_file_name 'results_mintrec_sccl.csv'
done
done
done
done
done