-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsegNet.py
153 lines (125 loc) · 5.75 KB
/
segNet.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
from __future__ import division
from __future__ import print_function
import datetime
import os
import io
from tensorflow import keras
import matplotlib.pyplot as plt
import numpy as np
import tensorflow as tf
from tensorflow.keras import layers
from datetime import datetime
import time
from utils import prepareSegData
NAME = "clouds recognition{}".format(int(time.time()))
def main():
DATA_DIR = "data/train_images"
kLABEL_NUM = 4
img_size = img_h = img_w = 128
train_x, test_x, train_y, test_y = \
prepareSegData(
img_list_file='data/train.csv',
img_folder=DATA_DIR,
img_size=img_size,
sample_size=-10,
normalize=True)
epoch = len(train_x)
# Network construction
# Encoder
input_img = layers.Input(shape=[img_h, img_w, 3])
x = layers.Conv2D(32, (5, 5), strides=(2, 2), activation='relu', padding='same')(input_img) # 64
x = layers.Conv2D(64, (5, 5), strides=1, activation='relu', padding='same')(x)
x = layers.Conv2D(64, (5, 5), strides=(2, 2), activation='relu', padding='same')(x) # 32
x = layers.Conv2D(128, (5, 5), strides=1, activation='relu', padding='same')(x)
x = layers.Conv2D(128, (5, 5), strides=(2, 2), activation='relu', padding='same')(x) # 16
x = layers.Conv2D(128, (5, 5), strides=1, activation='relu', padding='same')(x)
x = layers.Conv2D(128, (5, 5), strides=(2, 2), activation='relu', padding='same')(x) # 8
# Decoder
x = layers.Conv2DTranspose(128, (3, 3), strides=(2, 2), activation='relu', padding='same')(x) # 16
x = layers.Conv2D(128, (3, 3), strides=1, activation='relu', padding='same')(x)
x = layers.Conv2DTranspose(128, (3, 3), strides=(2, 2), activation='relu', padding='same')(x) # 32
x = layers.Conv2D(128, (3, 3), strides=1, activation='relu', padding='same')(x)
x = layers.Conv2DTranspose(128, (3, 3), strides=(2, 2), activation='relu', padding='same')(x) # 64
x = layers.Conv2D(64, (3, 3), strides=1, activation='relu', padding='same')(x)
decoder = layers.Conv2DTranspose(kLABEL_NUM, (3, 3), activation='relu', strides=(2, 2), padding='same')(x) # 128
model = keras.Model(input_img, decoder)
initial_learning_rate_main = 1e-5
lr_schedule_main = keras.optimizers.schedules.ExponentialDecay(
initial_learning_rate_main,
decay_steps=epoch * 10,
decay_rate=1e-1,
staircase=True)
model.compile(optimizer=tf.keras.optimizers.Adam(), # learning_rate=lr_schedule_main),
loss=tf.keras.losses.mse,
metrics=['accuracy'])
log_dir = os.path.join("tf_logs", "SegNet", datetime.now().strftime("%Y%m%d-%H%M%S/"))
tensorboard_callback = keras.callbacks.TensorBoard(log_dir=log_dir, profile_batch=0)
save_callback = keras.callbacks.ModelCheckpoint(log_dir,
monitor='val_accuracy',
verbose=True,
save_best_only=True,
save_weights_only=False,
mode='min',
save_freq='epoch')
print(model.summary())
file_writer = tf.summary.create_file_writer(log_dir)
# Use the model to display the state of the autoencoder from the validation dataset.
def log_img_pred(epoch, logs):
test_img = model.predict(test_x[2:3, :, :, :])
test_img = test_img.squeeze()
test_lbl = test_y[2, :, :, :].squeeze()
fig, ax = plt.subplots(2, 4)
ax[0, 0].imshow(test_lbl[:, :, 0])
ax[0, 1].imshow(test_lbl[:, :, 1])
ax[0, 2].imshow(test_lbl[:, :, 2])
ax[0, 3].imshow(test_lbl[:, :, 3])
ax[1, 0].imshow(test_img[:, :, 0])
ax[1, 1].imshow(test_img[:, :, 1])
ax[1, 2].imshow(test_img[:, :, 2])
ax[1, 3].imshow(test_img[:, :, 3])
buf = io.BytesIO()
plt.savefig(buf, format='png')
plt.close(fig)
buf.seek(0)
# Convert PNG buffer to TF image
image = tf.image.decode_png(buf.getvalue(), channels=4)
# Add the batch dimension
image = tf.expand_dims(image, 0)
# Log the confusion matrix as an image summary.
with file_writer.as_default():
tf.summary.image("Test prediction", image, step=epoch)
# Define the per-epoch callback.
cm_callback = keras.callbacks.LambdaCallback(on_epoch_end=log_img_pred)
model.fit(x=train_x,
y=train_y,
batch_size=64,
epochs=200,
use_multiprocessing=True,
validation_data=(test_x, test_y),
callbacks=[tensorboard_callback,
save_callback,
cm_callback
])
showTest(model, test_x, test_y)
def showTest(model: keras.Model, test_x, test_y: np.ndarray):
test_img = model.predict(test_x[2:3, :, :, :])
test_lbl = test_y[2, :, :, :].squeeze()
test_img = test_img.squeeze()
fig, ax = plt.subplots(2, 4)
ax[0, 0].imshow(test_lbl[:, :, 0])
ax[0, 1].imshow(test_lbl[:, :, 1])
ax[0, 2].imshow(test_lbl[:, :, 2])
ax[0, 3].imshow(test_lbl[:, :, 3])
ax[1, 0].imshow(test_img[:, :, 0])
ax[1, 1].imshow(test_img[:, :, 1])
ax[1, 2].imshow(test_img[:, :, 2])
ax[1, 3].imshow(test_img[:, :, 3])
plt.show()
if __name__ == "__main__":
if 0:
os.environ['CUDA_VISIBLE_DEVICES'] = '-1'
else:
physical_devices = tf.config.experimental.list_physical_devices('GPU')
assert len(physical_devices) > 0, "Not enough GPU hardware devices available"
config = tf.config.experimental.set_memory_growth(physical_devices[0], True)
main()