-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_exp_humor.sh
19 lines (10 loc) · 1.23 KB
/
run_exp_humor.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# EGEMAPS
python3 main.py --task humor --d_rnn 64 --rnn_n_layers 1 --lr 0.001 --feature egemaps --normalize --cache --result_csv baseline_results/humor.csv --n_seeds 5 --seed 101 --batch_size 256 --early_stopping_patience 3 --reduce_lr_patience 2
# DS
python3 main.py --task humor --d_rnn 64 --rnn_bi --rnn_n_layers 2 --lr 0.001 --feature ds --cache --result_csv baseline_results/humor.csv --n_seeds 5 --seed 101 --batch_size 256 --early_stopping_patience 3 --reduce_lr_patience 2
# FAU
python3 main.py --task humor --d_rnn 256 --rnn_bi --rnn_n_layers 4 --lr 0.0001 --feature faus --cache --result_csv baseline_results/humor.csv --n_seeds 5 --seed 101 --batch_size 256 --early_stopping_patience 3 --reduce_lr_patience 2
# VGGFACE
python3 main.py --task humor --d_rnn 64 --rnn_bi --rnn_n_layers 2 --lr 0.0001 --feature vggface2 --cache --result_csv baseline_results/humor.csv --n_seeds 5 --seed 101 --batch_size 256 --early_stopping_patience 3 --reduce_lr_patience 2
# BERT
python3 main.py --task humor --d_rnn 128 --rnn_bi --rnn_n_layers 4 --lr 0.001 --feature bert-4-sentence-level --cache --result_csv baseline_results/humor.csv --n_seeds 5 --seed 101 --batch_size 256 --early_stopping_patience 3 --reduce_lr_patience 2