-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_table2.sh
More file actions
41 lines (36 loc) · 1.38 KB
/
run_table2.sh
File metadata and controls
41 lines (36 loc) · 1.38 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
# 1* 10 = 10 Results(Table2 4th row)
# PCE zero-shot
args2="--data data/ --embtype lstm --embeddingSize 1024 --test verb_physics_test_5 --reverse true --train verb_physics_train_5 --dev verb_physics_dev_5 --zero true"
for rel in " --test_relation big" " --test_relation heavy" " --test_relation rigid" " --test_relation strong" " --test_relation fast"
do
echo $rel
argswithRelation="$args2$rel"
for i in {1..10}
do
python script.py $argswithRelation
done
done
# 1* 10 = 10 Results(Table2 3rd row)
# PCE zero-shot
args3="--data data/ --embtype lstm --embeddingSize 1024 --test verb_physics_test_5 --onepole true --reverse true --train verb_physics_train_5 --zero true"
for rel in " --test_relation big" " --test_relation heavy" " --test_relation rigid" " --test_relation strong" " --test_relation fast"
do
echo $rel
argswithRelation="$args3$rel"
for i in {1..10}
do
python script.py $argswithRelation
done
done
1* 10 = 10 Results(Table2 2th row)
PCE zero-shot
args2="--data data/ --embtype lstm --embeddingSize 1024 --test verb_physics_test_5 --reverse true --train verb_physics_train_5 --dev verb_physics_dev_5 --zero true"
for rel in " --test_relation big" " --test_relation heavy" " --test_relation rigid" " --test_relation strong" " --test_relation fast"
do
echo $rel
argswithRelation="$args2$rel"
for i in {1..10}
do
python baseline_script.py $argswithRelation
done
done