-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_heuristic_baseline_evaluation.sh
executable file
·27 lines (23 loc) · 1.85 KB
/
run_heuristic_baseline_evaluation.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
cd simmc2/model/ambiguous_candidates/
pwd
echo "=========================="
echo "Heuristic Baseline: Random"
CUDA_VISIBLE_DEVICES=0 python evaluate_heuristic_baselines.py \
--train_file "/home/holy/projects/ambiguous-mm-dialogue/preprocessed_data/ambiguous_candidates/simmc2.1_ambiguous_candidates_dstc11_train.json" \
--dev_file "/home/holy/projects/ambiguous-mm-dialogue/preprocessed_data/ambiguous_candidates/simmc2.1_ambiguous_candidates_dstc11_dev.json" \
--devtest_file "/home/holy/projects/ambiguous-mm-dialogue/preprocessed_data/ambiguous_candidates/simmc2.1_ambiguous_candidates_dstc11_devtest.json" \
--baseline_type random
echo "=========================="
echo "Heuristic Baseline: All Objects"
CUDA_VISIBLE_DEVICES=0 python evaluate_heuristic_baselines.py \
--train_file "/home/holy/projects/ambiguous-mm-dialogue/preprocessed_data/ambiguous_candidates/simmc2.1_ambiguous_candidates_dstc11_train.json" \
--dev_file "/home/holy/projects/ambiguous-mm-dialogue/preprocessed_data/ambiguous_candidates/simmc2.1_ambiguous_candidates_dstc11_dev.json" \
--devtest_file "/home/holy/projects/ambiguous-mm-dialogue/preprocessed_data/ambiguous_candidates/simmc2.1_ambiguous_candidates_dstc11_devtest.json" \
--baseline_type all_objects
echo "=========================="
echo "Heuristic Baseline: No Objects"
CUDA_VISIBLE_DEVICES=0 python evaluate_heuristic_baselines.py \
--train_file "/home/holy/projects/ambiguous-mm-dialogue/preprocessed_data/ambiguous_candidates/simmc2.1_ambiguous_candidates_dstc11_train.json" \
--dev_file "/home/holy/projects/ambiguous-mm-dialogue/preprocessed_data/ambiguous_candidates/simmc2.1_ambiguous_candidates_dstc11_dev.json" \
--devtest_file "/home/holy/projects/ambiguous-mm-dialogue/preprocessed_data/ambiguous_candidates/simmc2.1_ambiguous_candidates_dstc11_devtest.json" \
--baseline_type no_objects