-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunall_one_by_one.sh
More file actions
97 lines (72 loc) · 3.27 KB
/
runall_one_by_one.sh
File metadata and controls
97 lines (72 loc) · 3.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# training scenario, 1, 2, 3, or 4 (folds)
t_s=$1
# re-run scenario, 1, 2, 3, or 4 (reruns, can also be more than 4, eg 5)
re_run_s=$2
#batch_scenarios='eva sno sub sne sue sus thr xhr'
# SURF -> two areas
#batch_scenarios='eva'
#batch_scenarios='sno'
#batch_scenarios='sub'
#batch_scenarios='sne'
#batch_scenarios='sue'
#batch_scenarios='sus'
#batch_scenarios='thr'
#batch_scenarios='xhr'
# VELOCITY -> one area
#batch_scenarios='eva sno'
#batch_scenarios='sub sne'
#batch_scenarios='sue sus'
#batch_scenarios='thr'
#batch_scenarios='xhr'
##############################
# observational data fitting #
##############################
# one area
observations='observations'
areas='one'
directory='land_obs_one'
for b_s in $batch_scenarios
do
nohup python -u kals_model.py $b_s $t_s $re_run_s $observations $areas $directory > nohup_bat_sc_$b_s.tr_sc_$t_s.rr_sc_$re_run_s.obs_$observations.area_$areas.folder_$directory.out
done
# two areas
observations='observations'
areas='two'
directory='land_obs_two'
for b_s in $batch_scenarios
do
nohup python -u kals_model.py $b_s $t_s $re_run_s $observations $areas $directory > nohup_bat_sc_$b_s.tr_sc_$t_s.rr_sc_$re_run_s.obs_$observations.area_$areas.folder_$directory.out
done
##############################
# artificial data fitting #
##############################
# one area
observations='arti'
areas='one'
directory='land_art_one'
for b_s in $batch_scenarios
do
nohup python -u kals_model.py $b_s $t_s $re_run_s $observations $areas $directory > nohup_bat_sc_$b_s.tr_sc_$t_s.rr_sc_$re_run_s.obs_$observations.area_$areas.folder_$directory.out
done
# two areas
observations='arti'
areas='two'
directory='land_art_two'
for b_s in $batch_scenarios
do
nohup python -u kals_model.py $b_s $t_s $re_run_s $observations $areas $directory > nohup_bat_sc_$b_s.tr_sc_$t_s.rr_sc_$re_run_s.obs_$observations.area_$areas.folder_$directory.out
done
#nohup python -u kals_model.py eva $t_s $re_run_s observations > nohup_eva_tr_sc_$t_s.rr_sc_$re_run_s.out
#nohup python -u kals_model.py sno $t_s $re_run_s observations > nohup_sno_tr_sc_$t_s.rr_sc_$re_run_s.out
#nohup python -u kals_model.py sub $t_s $re_run_s observations > nohup_sub_tr_sc_$t_s.rr_sc_$re_run_s.out
#nohup python -u kals_model.py sne $t_s $re_run_s observations > nohup_sne_tr_sc_$t_s.rr_sc_$re_run_s.out
#nohup python -u kals_model.py sue $t_s $re_run_s observations > nohup_sue_tr_sc_$t_s.rr_sc_$re_run_s.out
#nohup python -u kals_model.py sus $t_s $re_run_s observations > nohup_sus_tr_sc_$t_s.rr_sc_$re_run_s.out
#nohup python -u kals_model.py thr $t_s $re_run_s observations > nohup_thr_tr_sc_$t_s.rr_sc_$re_run_s.out
#nohup python -u kals_model.py xhr $t_s $re_run_s observations > nohup_xhr_tr_sc_$t_s.rr_sc_$re_run_s.out
#nohup python -u kals_model.py xva $t_s $re_run_s > nohup_xva_tr_sc_$t_s.rr_sc_$re_run_s.out &
#nohup python -u kals_model.py xno $t_s $re_run_s > nohup_xno_tr_sc_$t_s.rr_sc_$re_run_s.out &
#nohup python -u kals_model.py xub $t_s $re_run_s > nohup_xub_tr_sc_$t_s.rr_sc_$re_run_s.out &
#nohup python -u kals_model.py xne $t_s $re_run_s > nohup_xne_tr_sc_$t_s.rr_sc_$re_run_s.out &
#nohup python -u kals_model.py xue $t_s $re_run_s > nohup_xue_tr_sc_$t_s.rr_sc_$re_run_s.out &
#nohup python -u kals_model.py xus $t_s $re_run_s > nohup_xus_tr_sc_$t_s.rr_sc_$re_run_s.out &