-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgesturetrain.py
More file actions
166 lines (124 loc) · 4.66 KB
/
gesturetrain.py
File metadata and controls
166 lines (124 loc) · 4.66 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
from tensorflow.keras.layers import Input, Lambda, Dense, Flatten,Dropout
from tensorflow.keras.models import Model
from tensorflow.keras.applications.vgg19 import VGG19
from tensorflow.keras.applications.vgg19 import preprocess_input
from tensorflow.keras.preprocessing import image
from tensorflow.keras.preprocessing.image import ImageDataGenerator
from tensorflow.keras.models import Sequential
import numpy as np
import pandas as pd
import os
import cv2
import matplotlib.pyplot as plt
from tensorflow.keras.callbacks import EarlyStopping
from sklearn.metrics import accuracy_score,classification_report,confusion_matrix
import numpy as np
# re-size all the images to this
IMAGE_SIZE = [224, 224]
train_path = "rps-final-dataset/train"
test_path = "rps-final-dataset/test"
val_path = "rps-final-dataset/validation"
x_train = []
for folder in os.listdir(train_path):
sub_path = train_path+"/"+folder
for img in os.listdir(sub_path):
image_path = sub_path+"/"+img
img_arr = cv2.imread(image_path)
img_arr = cv2.resize(img_arr, (224, 224))
x_train.append(img_arr)
x_test = []
for folder in os.listdir(test_path):
sub_path = test_path+"/"+folder
for img in os.listdir(sub_path):
image_path = sub_path+"/"+img
img_arr = cv2.imread(image_path)
img_arr = cv2.resize(img_arr, (224, 224))
x_test.append(img_arr)
x_val = []
for folder in os.listdir(val_path):
sub_path = val_path+"/"+folder
for img in os.listdir(sub_path):
image_path = sub_path+"/"+img
img_arr = cv2.imread(image_path)
img_arr = cv2.resize(img_arr, (224, 224))
x_val.append(img_arr)
train_x = np.array(x_train)
test_x = np.array(x_test)
val_x = np.array(x_val)
train_x.shape, test_x.shape, val_x.shape
train_x = train_x / 255.0
test_x = test_x / 255.0
val_x = val_x / 255.0
# train_datagen = ImageDataGenerator(rescale = 1./255,
# shear_range = 0.2,
# zoom_range = 0.2,
# horizontal_flip = True)
train_datagen = ImageDataGenerator(rescale = 1./255)
test_datagen = ImageDataGenerator(rescale = 1./255)
val_datagen = ImageDataGenerator(rescale = 1./255)
training_set = train_datagen.flow_from_directory(train_path,
target_size = (224, 224),
batch_size = 32,
class_mode = 'sparse')
test_set = test_datagen.flow_from_directory(test_path,
target_size = (224, 224),
batch_size = 32,
class_mode = 'sparse')
val_set = val_datagen.flow_from_directory(val_path,
target_size = (224, 224),
batch_size = 32,
class_mode = 'sparse')
training_set.class_indices
train_y = training_set.classes
test_y = test_set.classes
val_y = val_set.classes
train_y.shape, test_y.shape, val_y.shape
# add preprocessing layer to the front of VGG
vgg = VGG19(input_shape=IMAGE_SIZE + [3], weights='imagenet', include_top=False)
# don't train existing weights
for layer in vgg.layers:
layer.trainable = False
# our layers - you can add more if you want
x = Flatten()(vgg.output)
prediction = Dense(3, activation='softmax')(x)
# create a model object
model = Model(inputs=vgg.input, outputs=prediction)
# view the structure of the model
model.summary()
# tell the model what cost and optimization method to use
model.compile(
loss='sparse_categorical_crossentropy',
optimizer="adam",
metrics=['accuracy']
)
early_stop = EarlyStopping(monitor='val_loss', mode='min', verbose=1, patience=5)
#Early stopping to avoid overfitting of model fit the model
history = model.fit(
train_x,
train_y,
validation_data=(val_x, val_y),
epochs=10,
callbacks=[early_stop],
batch_size=32, shuffle=True)
# loss
plt.plot(history.history['loss'], label='train loss')
plt.plot(history.history['val_loss'], label='val loss')
plt.legend()
plt.savefig('vgg-loss-rps-1.png')
plt.show()
# accuracies
plt.plot(history.history['accuracy'], label='train acc')
plt.plot(history.history['val_accuracy'], label='val acc')
plt.legend()
plt.savefig('vgg-acc-rps-2.png')
plt.show()
model.evaluate(test_x, test_y, batch_size=32)
#predict
y_pred = model.predict(test_x)
y_pred = np.argmax(y_pred, axis=1)
#get classification report
print(classification_report(y_pred, test_y))
#get classification report
print(confusion_matrix(y_pred, test_y))
#model save
model.save("vgg-rps-1.h5")