-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_artificial_confound.sh
More file actions
executable file
·65 lines (40 loc) · 1.77 KB
/
run_artificial_confound.sh
File metadata and controls
executable file
·65 lines (40 loc) · 1.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env bash
##############################################
# EXP 1: bird dataset with ARTIFICIAL confound
##############################################
repetition="seed=range(5,20)"
cmd_aggregation="python main.py --multirun $repetition
experiment_name=forgetting_loss
+experiment=artificial_aggregation"
echo $cmd_aggregation && $cmd_aggregation
cmd_lower="python main.py --multirun $repetition
experiment_name=lowerbound
+experiment=artificial_lower"
echo $cmd_lower && $cmd_lower
cmd_upper="python main.py --multirun $repetition
experiment_name=upperbound
+experiment=artificial_upper"
echo $cmd_upper && $cmd_upper
cmd_iaiabl="python main.py --multirun $repetition
experiment_name=iaiabl
+experiment=artificial_iaiabl
debug.fine_annotation=3
model.coefs.debug=0.01"
echo $cmd_iaiabl && $cmd_iaiabl
cmd_iaiabl="python main.py --multirun $repetition
experiment_name=iaiabl
+experiment=artificial_iaiabl
debug.fine_annotation=0.05"
echo $cmd_iaiabl && $cmd_iaiabl
cmd_iaiabl="python main.py --multirun $repetition
experiment_name=iaiabl
+experiment=artificial_iaiabl
debug.fine_annotation=0.2"
echo $cmd_iaiabl && $cmd_iaiabl
cmd_iaiabl="python main.py --multirun $repetition
experiment_name=iaiabl
+experiment=artificial_iaiabl
debug.fine_annotation=1.0"
echo $cmd_iaiabl && $cmd_iaiabl
date
echo 'Done!'