-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTraining_Grey_Full.py
209 lines (174 loc) · 6.67 KB
/
Training_Grey_Full.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
import numpy as np
import tensorflow as tf
from tensorflow import keras
from tensorflow.keras import Model as M
from tensorflow.keras.layers import Dense, Flatten
from tensorflow.keras.optimizers import Adam
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense, Dropout, Activation, Flatten, Conv2D, MaxPooling2D
import cv2
import os
from matplotlib import pyplot as plt
import time as t
import pickle
from keras.utils import to_categorical
# functions
# function to convert the time into something readable
def convert_time(seconds):
seconds = seconds % (24 * 3600)
hour = seconds // 3600
seconds %= 3600
minutes = seconds // 60
seconds %= 60
return "%d:%02d:%02d" % (hour, minutes, seconds)
# function to load .pickle files
def load_data(file_name):
print(f'Loading {file_name}...')
file = pickle.load(open(file_name, 'rb'))
return file
# quick function to show the image
def show(img):
plt.imshow(img, cmap='gray')
plt.show()
# reshapes the images to the right size
def reshape_data(X, y):
print(f"Reshaping data...")
X = np.array(X) # ensuring that lists are instead arrays
X = X / 255
# triple_channel = np.array(X).reshape(-1, IMG_SIZE, IMG_SIZE, 3)
y = np.array(y)
y = to_categorical(y)
# print(f"triple_channel.shape(): {triple_channel.shape}, y.shape(): {y.shape}")
return X, y
# function to build the network
def build_network(X):
print("Building network...")
model = Sequential()
# First Layer
model.add(
Conv2D(512, kernel_size=(4, 4), activation='relu', input_shape=(X.shape[1:]), padding='same', strides=(2, 2)))
# Second Layer
model.add(Conv2D(256, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Third Layer
model.add(Conv2D(128, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Fourth Layer
model.add(Conv2D(128, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Third Layer
model.add(Conv2D(128, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Fourth Layer
model.add(Conv2D(128, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Fifth Layer
model.add(Conv2D(256, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Sixth Layer
model.add(Conv2D(512, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Final Layer
model.add(Flatten())
model.add(Dense(7, activation='softmax'))
model.compile(loss='categorical_crossentropy',
optimizer='adamax',
metrics=['accuracy'])
# All Done
model.summary()
return model
# function to train the model
def train_model(model, imgs, labels):
print("Training model...")
model.fit(imgs, labels, epochs=NUM_EPOCHS, validation_split=0, batch_size=BATCH_SIZE)
return model
# function to build a working model
def build_Mark_4_40(X):
print("Building Mark 4.40...")
model = Sequential()
# First Layer
model.add(
Conv2D(512, kernel_size=(4, 4), activation='relu', input_shape=(X.shape[1:]), padding='same', strides=(2, 2)))
# Second Layer
model.add(Conv2D(256, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Third Layer
model.add(Conv2D(128, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Fourth Layer
model.add(Conv2D(128, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Fifth Layer
model.add(Conv2D(256, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Sixth Layer
model.add(Conv2D(512, kernel_size=(4, 4), activation='relu', padding='same', strides=(2, 2)))
# Final Layer
model.add(Flatten())
model.add(Dense(7, activation='softmax'))
model.compile(loss='categorical_crossentropy',
optimizer='adamax',
metrics=['accuracy'])
# All Done
model.summary()
return model
def build_test_model(X):
print('Building Test Model...')
model = Sequential()
model.add(Dense(10, activation='relu', input_shape=(X.shape[1:])))
model.add(Dense(10, activation='relu'))
# Final Layer
model.add(Flatten())
model.add(Dense(7, activation='softmax'))
model.compile(loss='categorical_crossentropy',
optimizer='adamax',
metrics=['accuracy'])
return model
# function to convert from tf model to tf.lite for mobile application
def convert_model(model):
tf_lite_converter = tf.lite.TFLiteConverter.from_keras_model(model)
new_model = tf_lite_converter.convert()
return new_model
# gets size of file
def get_file_size(file_path):
size = os.path.getsize(file_path)
return size
# converts bytes for readability
def convert_bytes(size, unit=None):
if unit == "KB":
return 'File size: ' + str(round(size / 1024, 3)) + ' Kilobytes'
elif unit == "MB":
return 'File size: ' + str(round(size / (1024 * 1024), 3)) + ' Megabytes'
else:
return 'File size: ' + str(size) + ' bytes'
# global variables
CATAGORIES = ['Class (1)', 'Class (2)', 'Class (3)', 'Class (4)', 'Class (5)', 'Class (6)', 'Class (7)']
DATA = []
TESTING_DATA = []
IMG_SIZE = 481
NUM_EPOCHS = 4
BATCH_SIZE = 3
KERAS_MODEL_NAME = 'Full_Size_Model.h5'
TF_LITE_MODEL_NAME = 'TF_Lite_Model.tflite'
# Code to run
start_time = t.time()
print("Starting...")
# load in data
training_images = load_data('Images.pickle')
training_labels = load_data('Labels.pickle')
testing_images = load_data('Testing_Images.pickle')
testing_labels = load_data('Testing_Labels.pickle')
# reshape the data
training_images, training_labels = reshape_data(training_images, training_labels)
testing_images, testing_labels = reshape_data(testing_images, testing_labels)
# build and train the model
our_model = build_network(training_images)
trained_model = train_model(our_model, training_images, training_labels)
# save the model
trained_model.save(KERAS_MODEL_NAME)
full_bytes = convert_bytes(get_file_size(KERAS_MODEL_NAME), "MB")
# convert the model
tf_lite_model = convert_model(trained_model)
# save the tf.lite model
open(TF_LITE_MODEL_NAME, "wb").write(tf_lite_model)
lite_bytes = convert_bytes(get_file_size(TF_LITE_MODEL_NAME), "MB")
# evaluate the model
loss, acc = trained_model.evaluate(testing_images, testing_labels, batch_size=BATCH_SIZE, use_multiprocessing='True')
acc = round(acc * 100, 2)
print(f'accuracy: {acc}%')
# prints the elapsed time for convenience
total_time = t.time() - start_time
total_time = round(total_time, 2)
total_time = convert_time(total_time)
# final message
print(f"Finished in: {total_time}")
print('Success!')