-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage_classification.py
More file actions
420 lines (329 loc) · 13 KB
/
image_classification.py
File metadata and controls
420 lines (329 loc) · 13 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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
# -*- coding: utf-8 -*-
"""CI-HW3.ipynb
Automatically generated by Colaboratory.
Original file is located at
https://colab.research.google.com/drive/13xB1OxpOmgYbgzw_ZV2QRYs0bYm5CDWO
"""
import tensorflow as tf
from tensorflow import keras
from tensorflow.keras import layers, activations
from tensorflow.keras.preprocessing.image import ImageDataGenerator
from tensorflow.keras.layers import Input, Conv2D, MaxPooling2D, ZeroPadding2D,\
Flatten, BatchNormalization, AveragePooling2D, Dense, Activation, Add , Dropout
from tensorflow.keras.models import Sequential
from tensorflow.keras.models import Model
from tensorflow.keras import activations
from tensorflow.keras.optimizers import Adam
from tensorflow.keras.callbacks import EarlyStopping
from tensorflow.keras.regularizers import l2
from tensorflow.keras.utils import get_file
import pathlib
import matplotlib.pyplot as plt
data_directory = '/root/.keras/datasets/Images'
dataset_url = "http://vision.stanford.edu/aditya86/ImageNetDogs/images.tar"
data_directory = get_file('Images', origin=dataset_url, untar = True)
data_directory = pathlib.Path(data_directory)
print(data_directory)
img_height = 192
img_width = 192
batch_size = 32
# img_height = 224
# img_width = 224
# batch_size = 64
train_ds = tf.keras.preprocessing.image_dataset_from_directory(
data_directory,
validation_split=0.2,
subset="training",
shuffle = True,
seed=123,
image_size=(img_height, img_width),
batch_size=batch_size)
val_ds = tf.keras.preprocessing.image_dataset_from_directory(
data_directory,
validation_split=0.2,
subset="validation",
shuffle = False,
seed=123,
image_size=(img_height, img_width),
batch_size=batch_size)
cls_number = len(train_ds.class_names)
AUTOTUNE = tf.data.experimental.AUTOTUNE
train_ds = train_ds.cache().shuffle(1000).prefetch(buffer_size=AUTOTUNE)
val_ds = val_ds.cache().prefetch(buffer_size=AUTOTUNE)
def first_model():
model = Sequential([
layers.experimental.preprocessing.Rescaling(1./255, input_shape=(img_height, img_width, 3)),
layers.Conv2D(16, 3, padding='same', activation='relu'),
layers.MaxPooling2D(),
layers.Conv2D(32, 3, padding='same', activation='relu'),
layers.MaxPooling2D(),
layers.Conv2D(64, 3, padding='same', activation='relu'),
layers.MaxPooling2D(),
layers.Flatten(),
layers.Dense(128, activation='relu'),
layers.Dense(cls_number)
])
return model
def res_conv(x, s, filters):
'''
here the input size changes'''
x_skip = x
f1, f2 = filters
# first block
x = Conv2D(f1, kernel_size=(1, 1), strides=(s, s), padding='valid', kernel_regularizer=l2(0.001))(x)
# when s = 2 then it is like downsizing the feature map
x = BatchNormalization()(x)
x = Activation(activations.relu)(x)
# second block
x = Conv2D(f1, kernel_size=(3, 3), strides=(1, 1), padding='same', kernel_regularizer=l2(0.001))(x)
x = BatchNormalization()(x)
x = Activation(activations.relu)(x)
#third block
x = Conv2D(f2, kernel_size=(1, 1), strides=(1, 1), padding='valid', kernel_regularizer=l2(0.001))(x)
x = BatchNormalization()(x)
# shortcut
x_skip = Conv2D(f2, kernel_size=(1, 1), strides=(s, s), padding='valid', kernel_regularizer=l2(0.001))(x_skip)
x_skip = BatchNormalization()(x_skip)
# add
x = Add()([x, x_skip])
x = Activation(activations.relu)(x)
return x
def res_identity(x, filters):
#renet block where dimension doesnot change.
#The skip connection is just simple identity conncection
#we will have 3 blocks and then input will be added
x_skip = x # this will be used for addition with the residual block
f1, f2 = filters
#first block
x = Conv2D(f1, kernel_size=(1, 1), strides=(1, 1), padding='valid', kernel_regularizer=l2(0.001))(x)
x = BatchNormalization()(x)
x = Activation(activations.relu)(x)
#second block # bottleneck (but size kept same with padding)
x = Conv2D(f1, kernel_size=(3, 3), strides=(1, 1), padding='same', kernel_regularizer=l2(0.001))(x)
x = BatchNormalization()(x)
x = Activation(activations.relu)(x)
# third block activation used after adding the input
x = Conv2D(f2, kernel_size=(1, 1), strides=(1, 1), padding='valid', kernel_regularizer=l2(0.001))(x)
x = BatchNormalization()(x)
# x = Activation(activations.relu)(x)
# add the input
x = Add()([x, x_skip])
x = Activation(activations.relu)(x)
return x
def resnet50():
input_im = Input(shape=(img_height, img_width, 3)) # cifar 10 images size
x = layers.experimental.preprocessing.Rescaling(1./255)(input_im)
x = ZeroPadding2D(padding=(3, 3))(x)
# 1st stage
# here we perform maxpooling, see the figure above
x = Conv2D(64, kernel_size=(7, 7), strides=(2, 2))(x)
x = BatchNormalization()(x)
x = Activation(activations.relu)(x)
x = MaxPooling2D((3, 3), strides=(2, 2))(x)
#2nd stage
# frm here on only conv block and identity block, no pooling
x = res_conv(x, s=1, filters=(64, 256))
x = res_identity(x, filters=(64, 256))
x = res_identity(x, filters=(64, 256))
# 3rd stage
x = res_conv(x, s=2, filters=(128, 512))
x = res_identity(x, filters=(128, 512))
x = res_identity(x, filters=(128, 512))
x = res_identity(x, filters=(128, 512))
# 4th stage
x = res_conv(x, s=2, filters=(256, 1024))
x = res_identity(x, filters=(256, 1024))
x = res_identity(x, filters=(256, 1024))
x = res_identity(x, filters=(256, 1024))
x = res_identity(x, filters=(256, 1024))
x = res_identity(x, filters=(256, 1024))
# 5th stage
x = res_conv(x, s=2, filters=(512, 2048))
x = res_identity(x, filters=(512, 2048))
x = res_identity(x, filters=(512, 2048))
# ends with average pooling and dense connection
x = AveragePooling2D((2, 2), padding='same')(x)
x = Flatten()(x)
x = Dense(120, activation='softmax', kernel_initializer='he_normal')(x) #multi-class
# define the model
model = Model(inputs=input_im, outputs=x, name='Resnet50')
return model
def second_model():
model = Sequential([
layers.experimental.preprocessing.Rescaling(1./255, input_shape=(img_height, img_width, 3)),
layers.experimental.preprocessing.RandomFlip("horizontal_and_vertical"),
# layers.experimental.preprocessing.RandomRotation(0.2),
# layers.experimental.preprocessing.RandomZoom(.5, .2),
layers.Conv2D(16, 3, padding='same', activation='relu'),
layers.MaxPooling2D(),
layers.Conv2D(32, 3, padding='same', activation='relu'),
layers.MaxPooling2D(),
layers.Conv2D(64, 3, padding='same', activation='relu'),
layers.MaxPooling2D(),
layers.Flatten(),
layers.Dense(128, activation='relu'),
layers.Dense(cls_number)
])
return model
def mobile_net():
input_im = (img_height, img_width, 3) # cifar 10 images size
base_model = tf.keras.applications.MobileNetV2(input_shape= input_im, include_top=False, weights='imagenet')
base_model.trainable = False
model = Sequential([
layers.experimental.preprocessing.Rescaling(1./255, input_shape = input_im),
# layers.experimental.preprocessing.RandomFlip('horizontal'),
# layers.experimental.preprocessing.RandomRotation(0.1),
base_model,
tf.keras.layers.GlobalAveragePooling2D(),
tf.keras.layers.Dense(120, activation='softmax')
])
return model
def xception():
input_im = (img_height, img_width, 3) # cifar 10 images size
base_model = tf.keras.applications.Xception(input_shape= input_im, include_top=False, weights='imagenet')
base_model.trainable = False
model = Sequential([
layers.experimental.preprocessing.Rescaling(1./255, input_shape = input_im),
# layers.experimental.preprocessing.RandomFlip('horizontal'),
# layers.experimental.preprocessing.RandomRotation(0.1),
base_model,
tf.keras.layers.GlobalAveragePooling2D(),
tf.keras.layers.Dense(120, activation='softmax')
])
return model
def vgg():
input_im = (img_height, img_width, 3) # cifar 10 images size
base_model = tf.keras.applications.VGG19(input_shape= input_im, include_top=False, weights='imagenet')
base_model.trainable = False
model = Sequential([
layers.experimental.preprocessing.Rescaling(1./255, input_shape = input_im),
# layers.experimental.preprocessing.RandomFlip('horizontal'),
# layers.experimental.preprocessing.RandomRotation(0.1),
base_model,
tf.keras.layers.GlobalAveragePooling2D(),
tf.keras.layers.Dense(120, activation='softmax')
])
return model
def alexnet():
model = keras.models.Sequential([
keras.layers.Conv2D(filters=96, kernel_size=(11,11), strides=(4,4), activation='relu', input_shape=(img_height, img_width, 3)),
keras.layers.BatchNormalization(),
keras.layers.MaxPool2D(pool_size=(2,2), strides=(2,2)),
keras.layers.Conv2D(filters=256, kernel_size=(5,5), strides=(1,1), activation='relu', padding="same"),
keras.layers.BatchNormalization(),
keras.layers.MaxPool2D(pool_size=(2,2), strides=(2,2)),
keras.layers.Conv2D(filters=384, kernel_size=(3,3), strides=(1,1), activation='relu', padding="same"),
keras.layers.BatchNormalization(),
keras.layers.Conv2D(filters=384, kernel_size=(1,1), strides=(1,1), activation='relu', padding="same"),
keras.layers.BatchNormalization(),
keras.layers.Conv2D(filters=256, kernel_size=(1,1), strides=(1,1), activation='relu', padding="same"),
keras.layers.BatchNormalization(),
keras.layers.MaxPool2D(pool_size=(2,2), strides=(2,2)),
keras.layers.Flatten(),
keras.layers.Dense(4096, activation='relu'),
keras.layers.Dropout(0.5),
keras.layers.Dense(4096, activation='relu'),
keras.layers.Dropout(0.5),
keras.layers.Dense(cls_number, activation='softmax')
])
return model
def result(model, epoche):
#Report
model.summary()
model.compile(optimizer='adam',
loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),
metrics=['accuracy'])
# tf.keras.optimizers.Adam(
# learning_rate=10, beta_1=0.9, beta_2=0.999, epsilon=1e-07, amsgrad=False,
# name='Adam'
# )
#Train
epochs=epoche
history = model.fit(
train_ds,
validation_data=val_ds,
epochs=epochs
)
# Graph
acc = history.history['accuracy']
val_acc = history.history['val_accuracy']
loss = history.history['loss']
val_loss = history.history['val_loss']
epochs_range = range(epochs)
plt.figure(figsize=(8, 8))
plt.subplot(1, 2, 1)
plt.plot(epochs_range, acc, label='Training Accuracy')
plt.plot(epochs_range, val_acc, label='Validation Accuracy')
plt.legend(loc='lower right')
plt.title('Training and Validation Accuracy')
plt.subplot(1, 2, 2)
plt.plot(epochs_range, loss, label='Training Loss')
plt.plot(epochs_range, val_loss, label='Validation Loss')
plt.legend(loc='upper right')
plt.title('Training and Validation Loss')
plt.show()
#Usbaility = High
model = first_model()
result(model, 50)
#Usbaility = High
model = second_model()
result(model, 50)
# model.save_weights("weights.h5")
#Usbaility = Low
model = resnet50()
#Transfer Learning
WEIGHTS_PATH = ('https://github.com/fchollet/deep-learning-models/'
'releases/download/v0.2/'
'resnet50_weights_tf_dim_ordering_tf_kernels.h5')
# WEIGHTS_PATH_NO_TOP = ('https://github.com/fchollet/deep-learning-models/'
# 'releases/download/v0.2/'
# 'resnet50_weights_tf_dim_ordering_tf_kernels_notop.h5')
weight_directory = get_file(fname='Weights', origin=WEIGHTS_PATH)
model.load_weights(weight_directory, by_name=True)
result(model, 10)
#Usbaility = Very Low
model = alexnet()
result(model, 10)
model = mobile_net()
result(model, 10)
model = xception()
result(model, 10)
model = vgg()
result(model, 10)
# aug = ImageDataGenerator(
# # rotation_range=20,
# # zoom_range=0.15,
# # width_shift_range=0.2,
# # height_shift_range=0.2,
# shear_range=0.15,
# # horizontal_flip=True,
# # validation_split=0.2,
# # fill_mode="nearest")
# )
# train_generator = aug.flow_from_directory(data_directory,
# subset="training",
# shuffle = True,
# seed=123,
# target_size=(img_height, img_width),
# batch_size=64)
# print(train_generator.image_shape)
# print(train_generator)
# validation_generator = aug.flow_from_directory(data_directory,
# subset="validation",
# shuffle = False,
# seed=123,
# target_size=(img_height, img_width),
# batch_size=batch_size)
# print(validation_generator.image_shape)
# print(validation_generator)
# # model.compile(optimizer='adam',
# # loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),
# # metrics=['accuracy'])
# model.compile(loss='categorical_crossentropy',optimizer='adam',metrics=['accuracy'])
# e = 10
# model.fit(
# train_generator,
# # steps_per_epoch = train_generator.samples // batch_size,
# validation_data = validation_generator,
# # validation_steps = validation_generator.samples // batch_size,
# epochs = 10)