-
Notifications
You must be signed in to change notification settings - Fork 0
/
ablation-upsampling.sh
36 lines (31 loc) · 1.06 KB
/
ablation-upsampling.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
baseline="python -u train-supervised.py \
--name upsampling-baseline \
--num_epochs 100 \
--batch_size 3 \
--lr 0.0004 \
--wdecay 0.00001"
plus_l1="python -u train-supervised.py \
--name upsampling-plusl1 \
--num_epochs 100 \
--batch_size 3 \
--lr 0.0004 \
--wdecay 0.00001 \
--wloss_l1recon 2.5"
plus_ssim="python -u train-supervised.py \
--name upsampling-plusssim \
--num_epochs 100 \
--batch_size 3 \
--lr 0.0004 \
--wdecay 0.00001 \
--wloss_ssimrecon 2.5"
full="python -u train-supervised.py \
--name upsampling-full \
--num_epochs 100 \
--batch_size 3 \
--lr 0.0004 \
--wdecay 0.00001 \
--wloss_l1recon 2.5 \
--wloss_ssimrecon 2.5"
cmd=$plus_ssim # Change this line
echo ${cmd}
eval ${cmd}