-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtrain_srraw.sh
36 lines (27 loc) · 1.38 KB
/
train_srraw.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
#!/bin/bash
echo "Start to train the model...."
name="srrawjoint_try"
dataroot="/Data/dataset/SRRAW"
build_dir="./ckpt/"$name
if [ ! -d "$build_dir" ]; then
mkdir $build_dir
fi
LOG=./ckpt/$name/`date +%Y-%m-%d-%H-%M-%S`.txt
# x1 Super-Resolution
python train.py \
--dataset_name srraw --model srrawjoint --name $name --gcm_coord True \
--pre_ispnet_coord False --niter 100 --lr_decay_iters 50 --save_imgs False \
--batch_size 16 --print_freq 100 --calc_metrics True --lr 1e-4 -j 8 \
--dataroot $dataroot --scale 1 | tee $LOG
# x2 Super-Resolution
python train.py \
--dataset_name srraw --model srrawjoint --name $name --gcm_coord True \
--pre_ispnet_coord False --niter 200 --lr_decay_iters 150 --save_imgs False \
--batch_size 16 --print_freq 100 --calc_metrics True --lr 1e-4 -j 8 \
--dataroot $dataroot --scale 2 --load_iter 100 | tee $LOG
# x4 Super-Resolution
python train.py \
--dataset_name srraw --model srrawjoint --name $name --gcm_coord True \
--pre_ispnet_coord False --niter 300 --lr_decay_iters 250 --save_imgs False \
--batch_size 16 --print_freq 100 --calc_metrics True --lr 5e-5 -j 8 \
--dataroot $dataroot --scale 4 --load_iter 200 | tee $LOG