-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmultiple_runs.sh
58 lines (52 loc) · 1.28 KB
/
multiple_runs.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
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
exp="SimCLR_baselines"
train_mode="ft_1per_withoutTemporal"
device="cuda:0"
data_percentage="1"
ssl_method="simclr"
start=0
end=4
sleep_model="dsn"
for i in $(eval echo {$start..$end})
do
python3 main.py \
--device $device \
--experiment_description $exp \
--run_description "dsn" \
--fold_id $i \
--train_mode $train_mode \
--data_percentage $data_percentage \
--sleep_model $sleep_model \
--ssl_method $ssl_method \
--augmentation "noise_permute" \
--dataset "sleep_edf"
done
sleep_model="attnsleep"
for i in $(eval echo {$start..$end})
do
python3 main.py \
--device $device \
--experiment_description $exp \
--run_description "AttnSleep" \
--fold_id $i \
--train_mode $train_mode \
--data_percentage $data_percentage \
--sleep_model $sleep_model \
--ssl_method $ssl_method \
--augmentation "timeShift_permute" \
--dataset "sleep_edf"
done
sleep_model="cnn1d"
for i in $(eval echo {$start..$end})
do
python3 main.py \
--device $device \
--experiment_description $exp \
--run_description "cnn1d_deeper" \
--fold_id $i \
--train_mode $train_mode \
--data_percentage $data_percentage \
--sleep_model $sleep_model \
--ssl_method $ssl_method \
--augmentation "negate_permute" \
--dataset "sleep_edf"
done