This repository was archived by the owner on Dec 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcae.py
More file actions
179 lines (128 loc) · 7.22 KB
/
cae.py
File metadata and controls
179 lines (128 loc) · 7.22 KB
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
# https://gist.github.com/saliksyed/593c950ba1a3b9dd08d5
from time import time
from glob import glob
from collections import namedtuple
import tensorflow as tf
import numpy as np
import cv2
from clustering.import_stage import build_import_stage
from clustering.autoencoder import AutoencoderOutput
def deep_test():
def sample_image():
sample = np.ones((32, 32, 3), dtype=float)
sample = cv2.line(sample, (0, 0), (32, 32), (0., 0., 1.), lineType=cv2.LINE_AA)
sample = cv2.line(sample, (0, 32), (32, 0), (0., 1., 0.), lineType=cv2.LINE_AA)
sample = cv2.circle(sample, (16, 16), 14, (1., 0., 0.), lineType=cv2.LINE_AA)
return sample
def sample_window(input, output, timeout=0, window=None):
if input is None:
input = sample_image()
if output is None:
output = input
canvas = np.zeros((40, 80, 3))
canvas[4:36, 4:36, :] = input
canvas[4:36, 44:76, :] = output
canvas = cv2.resize(canvas, (320, 160), interpolation=cv2.INTER_NEAREST)
# render
name = window
if window is window:
name = 'image'
cv2.namedWindow(name)
cv2.imshow(name, canvas)
cv2.waitKey(timeout)
if window is None:
cv2.destroyAllWindows()
with tf.Graph().as_default() as graph:
files = glob('data/*.tfrecord.gz')
input_batch = build_import_stage(files, num_epochs=None)
x = input_batch
Definition = namedtuple('Definition', ['kernel_shape', 'layers_out', 'pooling'])
input_def = Definition(kernel_shape=(5, 5), layers_out=3, pooling=1)
layer_sizes = [Definition(kernel_shape=(3, 3), layers_out=64, pooling=2), # 32x32 -> 16x16
Definition(kernel_shape=(3, 3), layers_out=128, pooling=2), # 16x16 -> 8x8
Definition(kernel_shape=(3, 3), layers_out=64, pooling=2)] # 8x8 -> 4x4
#Definition(kernel_shape=(3, 3), layers_out=1024, pooling=2), # 4x4 -> 2x2
#Definition(kernel_shape=(3, 3), layers_out=512, pooling=2)] # 2x2 -> 1x1
with tf.variable_scope('autoencoder'):
next_layer_input = x
batch_size = tf.shape(next_layer_input)[0]
with tf.variable_scope('encoder'):
for i, dim in enumerate(layer_sizes):
with tf.variable_scope('encode_%i' % i):
layers_in = int(next_layer_input.get_shape()[3])
height, width = dim.kernel_shape
kernel_shape = (height, width, layers_in, dim.layers_out)
initial_weight = tf.truncated_normal_initializer()
initial_bias = tf.constant(0., dtype=tf.float32, shape=(dim.layers_out,))
weight = tf.get_variable(name='W', shape=kernel_shape, initializer=initial_weight)
bias = tf.get_variable(name='b', initializer=initial_bias)
z = tf.nn.conv2d(next_layer_input, weight, strides=(1, 1, 1, 1), padding='SAME') + bias
z = tf.nn.max_pool(z, ksize=(1, dim.pooling, dim.pooling, 1),
strides=(1, dim.pooling, dim.pooling, 1), padding='SAME')
h = tf.nn.sigmoid(z)
next_layer_input = h
# the low-dimension encoded value
embedding = tf.identity(next_layer_input, name='embedding')
next_layer_input = embedding
# build the reconstruction layers by reversing the reductions
layer_sizes.reverse()
layer_sizes.append(input_def)
with tf.variable_scope('decoder'):
for i, (dim, next) in enumerate(zip(layer_sizes[1:], layer_sizes[0:-1])):
with tf.variable_scope('decode_%i' % i):
layers_in = int(next_layer_input.get_shape()[3])
height_in = int(next_layer_input.get_shape()[1])
width_in = int(next_layer_input.get_shape()[2])
output_shape = (batch_size, next.pooling * height_in, next.pooling * width_in, dim.layers_out)
height, width = next.kernel_shape
kernel_shape = (height, width, dim.layers_out, layers_in)
initial_weight = tf.truncated_normal_initializer()
initial_bias = tf.constant(0., dtype=tf.float32, shape=(dim.layers_out,))
weight = tf.get_variable(name='W', shape=kernel_shape, initializer=initial_weight)
bias = tf.get_variable(name='b', initializer=initial_bias)
z = tf.nn.conv2d_transpose(next_layer_input, weight, output_shape=output_shape,
strides=(1, next.pooling, next.pooling, 1)) + bias
h = tf.nn.sigmoid(z)
h = tf.reshape(h, output_shape)
next_layer_input = h
reconstruction = tf.identity(next_layer_input, name='reconstruction')
with tf.variable_scope('optimization'):
loss = tf.reduce_mean(tf.square(x - reconstruction), name='loss')
cae = AutoencoderOutput(embedding=embedding, reconstruction=reconstruction, loss=loss)
global_step = tf.Variable(initial_value=0, trainable=False, name='global_step')
with tf.name_scope('training'):
train_step = tf.train.AdamOptimizer(0.01).minimize(cae.loss, global_step=global_step)
tf.summary.scalar('loss', cae.loss)
tf.summary.image('input', x, collections=['snapshot'])
tf.summary.image('reconstruction', cae.reconstruction, collections=['snapshot'])
image_summaries = tf.summary.merge_all('snapshot')
sv = tf.train.Supervisor(graph=graph, logdir='log')
with sv.managed_session() as sess:
start_time = time()
# initial metric
loss, i = sess.run([cae.loss, global_step])
print('%5i: loss %f' % (i, loss))
# run a sample image
sample = cv2.imread('sample/patch.jpg')
t_sample = cv2.cvtColor(sample, cv2.COLOR_BGR2RGB).astype(float) / 255.
t_sample = np.expand_dims(t_sample, 0)
sample = sample.astype(float) / 255.
r = sess.run(reconstruction, feed_dict={x: t_sample})
window = 'image'
sample_window(sample, r[0, :, :, :], timeout=1, window=window)
while not sv.should_stop():
_, loss, i = sess.run([train_step, cae.loss, global_step])
# GUI event loop handling
cv2.waitKey(1)
if time() - start_time >= 2.:
r, summary, loss = sess.run((reconstruction, image_summaries, cae.loss), feed_dict={x: t_sample})
print('%5i: loss %f' % (i, loss))
sv.summary_computed(sess, summary, global_step=i)
r = np.clip(r[0, :, :, :] * 255., 0., 255.).astype(np.uint8)
r = cv2.cvtColor(r, cv2.COLOR_RGB2BGR).astype(float) / 255.
sample_window(sample, r, timeout=1, window=window)
start_time = time()
cv2.destroyAllWindows()
if __name__ == '__main__':
# simple_test()
deep_test()