forked from PINTO0309/DeepLearningMugenKnock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bn_tensorflow_layers.py
211 lines (162 loc) · 6.78 KB
/
bn_tensorflow_layers.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
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
import tensorflow as tf
import argparse
import cv2
import numpy as np
from glob import glob
num_classes = 2
img_height, img_width = 224, 224
tf.set_random_seed(0)
def VGG16(x, keep_prob, train=False):
# block conv1
for i in range(2):
x = tf.layers.conv2d(inputs=x, filters=64, kernel_size=[3, 3], strides=1, padding='same', activation=tf.nn.relu, name='conv1_{}'.format(i+1))
x = tf.layers.batch_normalization(x, training=train)
x = tf.layers.max_pooling2d(inputs=x, pool_size=[2, 2], strides=2)
# block conv2
for i in range(2):
x = tf.layers.conv2d(inputs=x, filters=128, kernel_size=[3, 3], strides=1, padding='same', activation=tf.nn.relu, name='conv2_{}'.format(i+1))
x = tf.layers.batch_normalization(x, training=train)
x = tf.layers.max_pooling2d(inputs=x, pool_size=[2, 2], strides=2)
# block conv3
for i in range(3):
x = tf.layers.conv2d(inputs=x, filters=256, kernel_size=[3, 3], strides=1, padding='same', activation=tf.nn.relu, name='conv3_{}'.format(i+1))
x = tf.layers.batch_normalization(x, training=train)
x = tf.layers.max_pooling2d(inputs=x, pool_size=[2, 2], strides=2)
# block conv4
for i in range(3):
x = tf.layers.conv2d(inputs=x, filters=512, kernel_size=[3, 3], strides=1, padding='same', activation=tf.nn.relu, name='conv4_{}'.format(i+1))
x = tf.layers.batch_normalization(x, training=train)
x = tf.layers.max_pooling2d(inputs=x, pool_size=[2, 2], strides=2)
# block conv5
for i in range(3):
x = tf.layers.conv2d(inputs=x, filters=512, kernel_size=[3, 3], strides=1, padding='same', activation=tf.nn.relu, name='conv5_{}'.format(i+1))
x = tf.layers.batch_normalization(x, training=train)
x = tf.layers.max_pooling2d(inputs=x, pool_size=[2, 2], strides=2)
mb, h, w, c = x.get_shape().as_list()
x = tf.reshape(x, [-1, h*w*c])
x = tf.layers.dense(inputs=x, units=4096, activation=tf.nn.relu, name='fc1')
x = tf.nn.dropout(x, keep_prob=keep_prob)
x = tf.layers.dense(inputs=x, units=4096, activation=tf.nn.relu, name='fc2')
x = tf.nn.dropout(x, keep_prob=keep_prob)
x = tf.layers.dense(inputs=x, units=num_classes, name='fc_out')
return x
CLS = ['akahara', 'madara']
# get train data
def data_load(path, hf=False, vf=False):
xs = []
ts = []
paths = []
for dir_path in glob(path + '/*'):
for path in glob(dir_path + '/*'):
x = cv2.imread(path)
x = cv2.resize(x, (img_width, img_height)).astype(np.float32)
x /= 255.
xs.append(x)
t = [0 for _ in range(num_classes)]
for i, cls in enumerate(CLS):
if cls in path:
t[i] = 1
ts.append(t)
paths.append(path)
if hf:
xs.append(x[:, ::-1])
ts.append(t)
paths.append(path)
if vf:
xs.append(x[::-1])
ts.append(t)
paths.append(path)
if hf and vf:
xs.append(x[::-1, ::-1])
ts.append(t)
paths.append(path)
xs = np.array(xs, dtype=np.float32)
ts = np.array(ts, dtype=np.int)
return xs, ts, paths
# train
def train():
tf.reset_default_graph()
# place holder
X = tf.placeholder(tf.float32, [None, img_height, img_width, 3])
Y = tf.placeholder(tf.float32, [None, num_classes])
keep_prob = tf.placeholder(tf.float32)
logits = VGG16(X, keep_prob, train=True)
preds = tf.nn.softmax(logits)
loss = tf.reduce_mean(tf.losses.softmax_cross_entropy(logits=logits, onehot_labels=Y))
#loss = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits_v2(logits=logits, labels=Y))
optimizer = tf.train.MomentumOptimizer(learning_rate=0.001, momentum=0.9)
train = optimizer.minimize(loss)
correct_pred = tf.equal(tf.argmax(preds, 1), tf.argmax(Y, 1))
accuracy = tf.reduce_mean(tf.cast(correct_pred, tf.float32))
xs, ts, paths = data_load('../Dataset/train/images/', hf=True, vf=True)
# training
mb = 8
mbi = 0
train_ind = np.arange(len(xs))
np.random.seed(0)
np.random.shuffle(train_ind)
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
config.gpu_options.visible_device_list="0"
with tf.Session(config=config) as sess:
sess.run(tf.global_variables_initializer())
for i in range(500):
if mbi + mb > len(xs):
mb_ind = train_ind[mbi:]
np.random.shuffle(train_ind)
mb_ind = np.hstack((mb_ind, train_ind[:(mb-(len(xs)-mbi))]))
mbi = mb - (len(xs) - mbi)
else:
mb_ind = train_ind[mbi: mbi+mb]
mbi += mb
x = xs[mb_ind]
t = ts[mb_ind]
_, acc, los = sess.run([train, accuracy, loss], feed_dict={X: x, Y: t, keep_prob: 0.5})
print("iter >>", i+1, ',loss >>', los / mb, ',accuracy >>', acc)
saver = tf.train.Saver()
saver.save(sess, './cnn.ckpt')
# test
def test():
tf.reset_default_graph()
X = tf.placeholder(tf.float32, [None, img_height, img_width, 3])
Y = tf.placeholder(tf.float32, [None, num_classes])
keep_prob = tf.placeholder(tf.float32)
logits = VGG16(X, keep_prob)
out = tf.nn.softmax(logits)
xs, ts, paths = data_load("../Dataset/test/images/")
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
config.gpu_options.visible_device_list="0"
with tf.Session(config=config) as sess:
saver = tf.train.Saver()
#saver = tf.train.import_meta_graph("./cnn.ckpt.meta")
saver.restore(sess, "./cnn.ckpt")
for i in range(len(paths)):
x = xs[i]
t = ts[i]
path = paths[i]
x = np.expand_dims(x, axis=0)
pred = sess.run([out], feed_dict={X:x, keep_prob:1.})[0]
pred = pred[0]
#pred = out.eval(feed_dict={X: x, keep_prob: 1.0})[0]
print("in {}, predicted probabilities >> {}".format(path, pred))
def arg_parse():
parser = argparse.ArgumentParser(description='CNN implemented with Keras')
parser.add_argument('--train', dest='train', action='store_true')
parser.add_argument('--test', dest='test', action='store_true')
args = parser.parse_args()
return args
# main
if __name__ == '__main__':
args = arg_parse()
if args.train:
train()
if args.test:
test()
if not (args.train or args.test):
print("please select train or test flag")
print("train: python main.py --train")
print("test: python main.py --test")
print("both: python main.py --train --test")