forked from hiram64/ESRGAN-tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inference.py
76 lines (52 loc) · 2.45 KB
/
inference.py
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
import os
import cv2
import numpy as np
import tensorflow as tf
from lib.train_module import Network
from lib.utils import create_dirs, de_normalize_image, load_inference_data
def set_flags():
Flags = tf.app.flags
Flags.DEFINE_string('data_dir', './data/inference', 'inference data directory')
Flags.DEFINE_string('checkpoint_dir', './checkpoint', 'checkpoint directory')
Flags.DEFINE_string('inference_checkpoint', '',
'checkpoint to use for inference. Empty string means the latest checkpoint is used')
Flags.DEFINE_string('inference_result_dir', './inference_result', 'output directory during inference')
Flags.DEFINE_integer('channel', 3, 'Number of input/output image channel')
Flags.DEFINE_integer('num_repeat_RRDB', 15, 'The number of repeats of RRDB blocks')
Flags.DEFINE_float('residual_scaling', 0.2, 'residual scaling parameter')
Flags.DEFINE_integer('initialization_random_seed', 111, 'random seed of networks initialization')
return Flags.FLAGS
def main():
# set flag
FLAGS = set_flags()
# make dirs
target_dirs = [FLAGS.inference_result_dir]
create_dirs(target_dirs)
# load test data
LR_inference, LR_filenames = load_inference_data(FLAGS)
LR_data = tf.placeholder(tf.float32, shape=[1, None, None, FLAGS.channel], name='LR_input')
# build Generator
network = Network(FLAGS, LR_data)
gen_out = network.generator()
fetches = {'gen_HR': gen_out}
# Start Session
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
with tf.Session(config=config) as sess:
print('Inference start')
saver = tf.train.Saver(var_list=tf.get_collection(tf.GraphKeys.GLOBAL_VARIABLES, scope='generator'))
if FLAGS.inference_checkpoint:
saver.restore(sess, os.path.join(FLAGS.checkpoint_dir, FLAGS.inference_checkpoint))
else:
print('No checkpoint is specified. The latest one is used for inference')
saver.restore(sess, tf.train.latest_checkpoint(FLAGS.checkpoint_dir))
for i, test_img in enumerate(LR_inference):
feed_dict = {
LR_data: test_img
}
result = sess.run(fetches=fetches, feed_dict=feed_dict)
cv2.imwrite(os.path.join(FLAGS.inference_result_dir, LR_filenames[i]),
de_normalize_image(np.squeeze(result['gen_HR'])))
print('Inference end')
if __name__ == '__main__':
main()