forked from brade31919/SRGAN-tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrain_SRGAN.sh
More file actions
29 lines (28 loc) · 795 Bytes
/
train_SRGAN.sh
File metadata and controls
29 lines (28 loc) · 795 Bytes
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
#!/usr/bin/env bash
CUDA_VISIBLE_DEVICES=0 python main.py \
--output_dir ./experiment_SRGAN_VGG54/ \
--summary_dir ./experiment_SRGAN_VGG54/log/ \
--mode train \
--is_training True \
--task SRGAN \
--batch_size 16 \
--flip True \
--random_crop True \
--crop_size 24 \
--input_dir_LR ./data/RAISE_LR/ \
--input_dir_HR ./data/RAISE_HR/ \
--num_resblock 16 \
--perceptual_mode VGG54 \
--name_queue_capacity 4096 \
--image_queue_capacity 4096 \
--ratio 0.001 \
--learning_rate 0.0001 \
--decay_step 100000 \
--decay_rate 0.1 \
--stair True \
--beta 0.9 \
--max_iter 200000 \
--queue_thread 10 \
--vgg_scaling 0.0061 \
--pre_trained_model True \
--checkpoint ./experiment_SRGAN_MSE/model-500000