-
Notifications
You must be signed in to change notification settings - Fork 82
/
train.py
executable file
·303 lines (277 loc) · 13.2 KB
/
train.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
__author__ = 'yunbo'
import os.path
import time
import numpy as np
import tensorflow as tf
import cv2
import sys
import random
from nets import models_factory
from data_provider import datasets_factory
from utils import preprocess
from utils import metrics
from skimage.measure import compare_ssim
# -----------------------------------------------------------------------------
FLAGS = tf.app.flags.FLAGS
# data I/O
tf.app.flags.DEFINE_string('dataset_name', 'mnist',
'The name of dataset.')
tf.app.flags.DEFINE_string('train_data_paths',
'data/moving-mnist-example/moving-mnist-train.npz',
'train data paths.')
tf.app.flags.DEFINE_string('valid_data_paths',
'data/moving-mnist-example/moving-mnist-valid.npz',
'validation data paths.')
tf.app.flags.DEFINE_string('save_dir', 'checkpoints/mnist_predrnn_pp',
'dir to store trained net.')
tf.app.flags.DEFINE_string('gen_frm_dir', 'results/mnist_predrnn_pp',
'dir to store result.')
# model
tf.app.flags.DEFINE_string('model_name', 'predrnn_pp',
'The name of the architecture.')
tf.app.flags.DEFINE_string('pretrained_model', '',
'file of a pretrained model to initialize from.')
tf.app.flags.DEFINE_integer('input_length', 10,
'encoder hidden states.')
tf.app.flags.DEFINE_integer('seq_length', 20,
'total input and output length.')
tf.app.flags.DEFINE_integer('img_width', 64,
'input image width.')
tf.app.flags.DEFINE_integer('img_channel', 1,
'number of image channel.')
tf.app.flags.DEFINE_integer('stride', 1,
'stride of a convlstm layer.')
tf.app.flags.DEFINE_integer('filter_size', 5,
'filter of a convlstm layer.')
tf.app.flags.DEFINE_string('num_hidden', '128,64,64,64',
'COMMA separated number of units in a convlstm layer.')
tf.app.flags.DEFINE_integer('patch_size', 4,
'patch size on one dimension.')
tf.app.flags.DEFINE_boolean('layer_norm', True,
'whether to apply tensor layer norm.')
# optimization
tf.app.flags.DEFINE_float('lr', 0.001,
'base learning rate.')
tf.app.flags.DEFINE_boolean('reverse_input', True,
'whether to reverse the input frames while training.')
tf.app.flags.DEFINE_integer('batch_size', 8,
'batch size for training.')
tf.app.flags.DEFINE_integer('max_iterations', 80000,
'max num of steps.')
tf.app.flags.DEFINE_integer('display_interval', 1,
'number of iters showing training loss.')
tf.app.flags.DEFINE_integer('test_interval', 2000,
'number of iters for test.')
tf.app.flags.DEFINE_integer('snapshot_interval', 10000,
'number of iters saving models.')
class Model(object):
def __init__(self):
# inputs
self.x = tf.placeholder(tf.float32,
[FLAGS.batch_size,
FLAGS.seq_length,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.patch_size*FLAGS.patch_size*FLAGS.img_channel])
self.mask_true = tf.placeholder(tf.float32,
[FLAGS.batch_size,
FLAGS.seq_length-FLAGS.input_length-1,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.patch_size*FLAGS.patch_size*FLAGS.img_channel])
grads = []
loss_train = []
self.pred_seq = []
self.tf_lr = tf.placeholder(tf.float32, shape=[])
num_hidden = [int(x) for x in FLAGS.num_hidden.split(',')]
print(num_hidden)
num_layers = len(num_hidden)
with tf.variable_scope(tf.get_variable_scope()):
# define a model
output_list = models_factory.construct_model(
FLAGS.model_name, self.x,
self.mask_true,
num_layers, num_hidden,
FLAGS.filter_size, FLAGS.stride,
FLAGS.seq_length, FLAGS.input_length,
FLAGS.layer_norm)
gen_ims = output_list[0]
loss = output_list[1]
pred_ims = gen_ims[:,FLAGS.input_length-1:]
self.loss_train = loss / FLAGS.batch_size
# gradients
all_params = tf.trainable_variables()
grads.append(tf.gradients(loss, all_params))
self.pred_seq.append(pred_ims)
self.train_op = tf.train.AdamOptimizer(FLAGS.lr).minimize(loss)
# session
variables = tf.global_variables()
self.saver = tf.train.Saver(variables)
init = tf.global_variables_initializer()
configProt = tf.ConfigProto()
configProt.gpu_options.allow_growth = True
configProt.allow_soft_placement = True
self.sess = tf.Session(config = configProt)
self.sess.run(init)
if FLAGS.pretrained_model:
self.saver.restore(self.sess, FLAGS.pretrained_model)
def train(self, inputs, lr, mask_true):
feed_dict = {self.x: inputs}
feed_dict.update({self.tf_lr: lr})
feed_dict.update({self.mask_true: mask_true})
loss, _ = self.sess.run((self.loss_train, self.train_op), feed_dict)
return loss
def test(self, inputs, mask_true):
feed_dict = {self.x: inputs}
feed_dict.update({self.mask_true: mask_true})
gen_ims = self.sess.run(self.pred_seq, feed_dict)
return gen_ims
def save(self, itr):
checkpoint_path = os.path.join(FLAGS.save_dir, 'model.ckpt')
self.saver.save(self.sess, checkpoint_path, global_step=itr)
print('saved to ' + FLAGS.save_dir)
def main(argv=None):
if tf.gfile.Exists(FLAGS.save_dir):
tf.gfile.DeleteRecursively(FLAGS.save_dir)
tf.gfile.MakeDirs(FLAGS.save_dir)
if tf.gfile.Exists(FLAGS.gen_frm_dir):
tf.gfile.DeleteRecursively(FLAGS.gen_frm_dir)
tf.gfile.MakeDirs(FLAGS.gen_frm_dir)
# load data
train_input_handle, test_input_handle = datasets_factory.data_provider(
FLAGS.dataset_name, FLAGS.train_data_paths, FLAGS.valid_data_paths,
FLAGS.batch_size, FLAGS.img_width)
print(Initializing models)
model = Model()
lr = FLAGS.lr
delta = 0.00002
base = 0.99998
eta = 1
for itr in xrange(1, FLAGS.max_iterations + 1):
if train_input_handle.no_batch_left():
train_input_handle.begin(do_shuffle=True)
ims = train_input_handle.get_batch()
ims = preprocess.reshape_patch(ims, FLAGS.patch_size)
if itr < 50000:
eta -= delta
else:
eta = 0.0
random_flip = np.random.random_sample(
(FLAGS.batch_size,FLAGS.seq_length-FLAGS.input_length-1))
true_token = (random_flip < eta)
#true_token = (random_flip < pow(base,itr))
ones = np.ones((FLAGS.img_width/FLAGS.patch_size,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.patch_size**2*FLAGS.img_channel))
zeros = np.zeros((FLAGS.img_width/FLAGS.patch_size,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.patch_size**2*FLAGS.img_channel))
mask_true = []
for i in xrange(FLAGS.batch_size):
for j in xrange(FLAGS.seq_length-FLAGS.input_length-1):
if true_token[i,j]:
mask_true.append(ones)
else:
mask_true.append(zeros)
mask_true = np.array(mask_true)
mask_true = np.reshape(mask_true, (FLAGS.batch_size,
FLAGS.seq_length-FLAGS.input_length-1,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.patch_size**2*FLAGS.img_channel))
cost = model.train(ims, lr, mask_true)
if FLAGS.reverse_input:
ims_rev = ims[:,::-1]
cost += model.train(ims_rev, lr, mask_true)
cost = cost/2
if itr % FLAGS.display_interval == 0:
print('itr: ' + str(itr))
print('training loss: ' + str(cost))
if itr % FLAGS.test_interval == 0:
print('test...')
test_input_handle.begin(do_shuffle = False)
res_path = os.path.join(FLAGS.gen_frm_dir, str(itr))
os.mkdir(res_path)
avg_mse = 0
batch_id = 0
img_mse,ssim,psnr,fmae,sharp= [],[],[],[],[]
for i in xrange(FLAGS.seq_length - FLAGS.input_length):
img_mse.append(0)
ssim.append(0)
psnr.append(0)
fmae.append(0)
sharp.append(0)
mask_true = np.zeros((FLAGS.batch_size,
FLAGS.seq_length-FLAGS.input_length-1,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.img_width/FLAGS.patch_size,
FLAGS.patch_size**2*FLAGS.img_channel))
while(test_input_handle.no_batch_left() == False):
batch_id = batch_id + 1
test_ims = test_input_handle.get_batch()
test_dat = preprocess.reshape_patch(test_ims, FLAGS.patch_size)
img_gen = model.test(test_dat, mask_true)
# concat outputs of different gpus along batch
img_gen = np.concatenate(img_gen)
img_gen = preprocess.reshape_patch_back(img_gen, FLAGS.patch_size)
# MSE per frame
for i in xrange(FLAGS.seq_length - FLAGS.input_length):
x = test_ims[:,i + FLAGS.input_length,:,:,0]
gx = img_gen[:,i,:,:,0]
fmae[i] += metrics.batch_mae_frame_float(gx, x)
gx = np.maximum(gx, 0)
gx = np.minimum(gx, 1)
mse = np.square(x - gx).sum()
img_mse[i] += mse
avg_mse += mse
real_frm = np.uint8(x * 255)
pred_frm = np.uint8(gx * 255)
psnr[i] += metrics.batch_psnr(pred_frm, real_frm)
for b in xrange(FLAGS.batch_size):
sharp[i] += np.max(
cv2.convertScaleAbs(cv2.Laplacian(pred_frm[b],3)))
score, _ = compare_ssim(pred_frm[b],real_frm[b],full=True)
ssim[i] += score
# save prediction examples
if batch_id <= 10:
path = os.path.join(res_path, str(batch_id))
os.mkdir(path)
for i in xrange(FLAGS.seq_length):
name = 'gt' + str(i+1) + '.png'
file_name = os.path.join(path, name)
img_gt = np.uint8(test_ims[0,i,:,:,:] * 255)
cv2.imwrite(file_name, img_gt)
for i in xrange(FLAGS.seq_length-FLAGS.input_length):
name = 'pd' + str(i+1+FLAGS.input_length) + '.png'
file_name = os.path.join(path, name)
img_pd = img_gen[0,i,:,:,:]
img_pd = np.maximum(img_pd, 0)
img_pd = np.minimum(img_pd, 1)
img_pd = np.uint8(img_pd * 255)
cv2.imwrite(file_name, img_pd)
test_input_handle.next()
avg_mse = avg_mse / (batch_id*FLAGS.batch_size)
print('mse per seq: ' + str(avg_mse))
for i in xrange(FLAGS.seq_length - FLAGS.input_length):
print(img_mse[i] / (batch_id*FLAGS.batch_size))
psnr = np.asarray(psnr, dtype=np.float32)/batch_id
fmae = np.asarray(fmae, dtype=np.float32)/batch_id
ssim = np.asarray(ssim, dtype=np.float32)/(FLAGS.batch_size*batch_id)
sharp = np.asarray(sharp, dtype=np.float32)/(FLAGS.batch_size*batch_id)
print('psnr per frame: ' + str(np.mean(psnr)))
for i in xrange(FLAGS.seq_length - FLAGS.input_length):
print(psnr[i])
print('fmae per frame: ' + str(np.mean(fmae)))
for i in xrange(FLAGS.seq_length - FLAGS.input_length):
print(fmae[i])
print('ssim per frame: ' + str(np.mean(ssim)))
for i in xrange(FLAGS.seq_length - FLAGS.input_length):
print(ssim[i])
print('sharpness per frame: ' + str(np.mean(sharp)))
for i in xrange(FLAGS.seq_length - FLAGS.input_length):
print(sharp[i])
if itr % FLAGS.snapshot_interval == 0:
model.save(itr)
train_input_handle.next()
if __name__ == '__main__':
tf.app.run()