-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrain_vgg11.py
More file actions
105 lines (84 loc) · 2.85 KB
/
train_vgg11.py
File metadata and controls
105 lines (84 loc) · 2.85 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
import numpy as np
from numpy import genfromtxt
from PIL import Image
import keras
from keras.optimizers import Adam
from keras.models import load_model
import vgg11
import time
MODEL = 'my_model_0010.h5'
# NEWMODEL = 'my_model_002.h5'
def scale(x_train, x_test):
x_train = x_train.astype(float)
x_test = x_test.astype(float)
x_train /= 255.0
x_test /= 255.0
mean = np.mean(x_train)
x_train -= mean
x_test -= mean
return x_train, x_test
start_time = time.time()
# ========== process image data into csv file ==========
# x_train = np.zeros((71093, 1024)).astype(int)
# y_train = np.zeros((71093)).astype(int)
# x_test = np.zeros((17858, 1024)).astype(int)
# y_test = np.zeros((17858)).astype(int)
# print "loading train data..."
# traintxt = open("fashion-data/train.txt", 'r')
# i = 0
# for line in traintxt:
# line = line.strip("\n")
# line = line.replace("/", "_")
# filename = "processed/" + line + ".jpg"
# img = Image.open(filename)
# x_train[i] = img.getdata()
# token = line.split("_")
# y_train[i] = int(token[0])
# i += 1
# print i
# print "loading test data..."
# testtxt = open("fashion-data/test.txt", 'r')
# i = 0
# for line in testtxt:
# line = line.strip("\n")
# line = line.replace("/", "_")
# filename = "processed/" + line + ".jpg"
# img = Image.open(filename)
# x_test[i] = img.getdata()
# token = line.split("_")
# y_test[i] = int(token[0])
# i += 1
# print i
# print "saving data..."
# np.savetxt('x_train.csv', x_train, fmt='%d', delimiter=',')
# np.savetxt('y_train.csv', y_train, fmt='%d', delimiter=',')
# np.savetxt('x_test.csv', x_test, fmt='%d', delimiter=',')
# np.savetxt('y_test.csv', y_test, fmt='%d', delimiter=',')
# ========== process image data into csv file ==========
print "loading data..."
x_train = genfromtxt("x_train.csv", delimiter=',')
y_train = genfromtxt("y_train.csv", delimiter=',')
x_test = genfromtxt("x_test.csv", delimiter=',')
y_test = genfromtxt("y_test.csv", delimiter=',')
x_train, x_test = scale(x_train, x_test)
x_train = x_train.reshape((71093, 32, 32, 1))
x_test = x_test.reshape((17858, 32, 32, 1))
y_train = keras.utils.to_categorical(y_train, 15)
y_test = keras.utils.to_categorical(y_test, 15)
print "training..."
# build vgg11 model
# input_shape = (32, 32, 1)
# model = vgg11.build_model(input_shape)
model = load_model(MODEL)
# training and testing
# adam = Adam(lr=0.001, beta_1=0.9, beta_2=0.999, epsilon=1e-08, decay=0.0)
# model.compile(loss='categorical_crossentropy', optimizer=adam, metrics=['accuracy'])
# for i in range(10):
# history = model.fit(x_train, y_train, batch_size=128, epochs=5, validation_data=(x_test, y_test))
# # save trained model for future usage
# model.save("my_model_00" + str(i+2) + ".h5")
# evaluate model
score = model.evaluate(x_test, y_test)
print('test loss: ', score[0])
print('test accuracy: ', score[1])
print "--- %s seconds ---" % (time.time() - start_time)