-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbest_model.py
More file actions
225 lines (182 loc) · 8.02 KB
/
Copy pathbest_model.py
File metadata and controls
225 lines (182 loc) · 8.02 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
# Import libraries
import pandas as pd
import sklearn
import numpy as np
import random
import pickle
from matplotlib import pyplot as plt
import my_func
import time
from eye_identifier import EyeCenterIdentifier, GridSearch
from image_preprocess import imanorm, histeq, imaderiv
# Set up global parameters
global SIZE
global HEIGHT
global WIDTH
global half_HEIGHT
global half_WIDTH
global N_plots
SIZE = 96
HEIGHT = 12
WIDTH = 20
half_HEIGHT = 6
half_WIDTH = 10
# Import data
data_ori = pd.read_csv(r"..\data\training.csv")
# use a subset of the data
N_sub = 200
data = data_ori.iloc[:N_sub]
images = data.Image.map(my_func.str_split) # Transfer Image into arrays
data = data.drop('Image', 1)
data_pos = data[['left_eye_center_x', 'left_eye_center_y', 'right_eye_center_x', 'right_eye_center_y']]
# Remove rows with nan positions
nan_index = data_pos.index[data_pos.isnull().any(axis=1)]
images = images.drop(nan_index, axis=0)
data = data.drop(nan_index, axis=0)
data_pos = data_pos.drop(nan_index, axis=0)
# histeq transform
images = images.apply(histeq)
#images = images.apply(imaderiv)
# Split the data into training set and testing set
from sklearn.model_selection import train_test_split
images_train, images_test, data_pos_train, data_pos_test = train_test_split(images, data_pos, test_size = 0.2, random_state = 312)
print ("The training set has {} observations and the testing set has {} observations". format(images_train.shape[0], images_test.shape[0]))
# Get 20 subplots from each image, 1 right eye, 1 left eye, 2 randomly selected subplots
N_plots = 20
# Create the eye training data set
random.seed(123)
col_names = ['pixel' + str(v) for v in range(0, HEIGHT * WIDTH)] + ['center_X', 'center_Y', 'is_eye']
data_eye = pd.DataFrame(columns = col_names)
for i in range(0, images_train.shape[0]):
t1=time.time()
center_X = np.empty(0)
center_Y = np.empty(0)
is_eye = np.empty(0)
# Select the two eye subplots
for _eye in ['left_eye_center', 'right_eye_center']:
_eye_x = _eye + '_x'
_eye_y = _eye + '_y'
_x = data_pos_train.iloc[i][ _eye_x]
_y = data_pos_train.iloc[i][ _eye_y]
_x = np.array([_x-2, _x, _x+2, _x, _x])
_y = np.array([_y, _y, _y, _y-1, _y+1])
center_X = np.append(center_X, _x)
center_Y = np.append(center_Y, _y)
is_eye = np.append(is_eye, [1] * 5)
# randomly select two subplots
for r in range(10):
while True:
_x = random.uniform(0, SIZE)
_y = random.uniform(0, SIZE)
# do not want the random center to be too close to the eyes
if not (abs(_x - data_pos_train.iloc[i][ 'left_eye_center_x']) + abs(_y - data_pos_train.iloc[i][ 'left_eye_center_y']) < HEIGHT + WIDTH or abs(_x - data_pos_train.iloc[i][ 'right_eye_center_x']) + abs(_y - data_pos_train.iloc[i][ 'right_eye_center_y']) < HEIGHT + WIDTH):
break
center_X = np.append(center_X, _x)
center_Y = np.append(center_Y, _y)
is_eye = np.append(is_eye, 0)
for j in range (0,len(center_X)):
temp = my_func.cut_image(center_X[j], center_Y[j], half_WIDTH, half_HEIGHT)
ima = pd.Series(images_train.iloc[i][temp[1]])
ima = ima.append(pd.Series([center_X[j], center_Y[j], is_eye[j]]))
ima.index = col_names
data_eye = data_eye.append(ima, ignore_index = True)
print("Iteration {} used {:.2f} seconds".format(i, time.time()-t1))
# Get the train_X and train_y
train_X = data_eye.drop(['center_X', 'center_Y', 'is_eye'], axis = 1)
train_y = data_eye.is_eye
train_images = images_train
train_pos = data_pos_train
test_X = images_test
test_pos = data_pos_test
rate_eye = sum(data_eye.is_eye == 1)/data_eye.shape[0]
print ("{:.2} of the subplots are eye.".format(rate_eye))
# pickle the data sets
with open('../pickles/datasets.pickle', 'wb') as datasets:
pickle.dump((train_X, train_y, train_images, train_pos, test_X, test_pos), datasets)
# A Benchmark
# If use the mean center of the training set, what is the mse
pred_data_mean = pd.DataFrame({'left_eye_x_mean': [train_pos.left_eye_center_x.mean()] * len(test_X),
'left_eye_y_mean': [train_pos.left_eye_center_y.mean()] * len(test_X),
'right_eye_x_mean': [train_pos.right_eye_center_x.mean()] * len(test_X),
'right_eye_y_mean': [train_pos.right_eye_center_y.mean()] * len(test_X)})
eye_bench = EyeCenterIdentifier(None, None, None)
mse_mean = eye_bench.get_mse(pred_data_mean, test_pos) # bench mark: 2.96
# Build predict models
step_size = (1, 1)
N_steps = (8, 4)
# Random Forest
from sklearn.ensemble import RandomForestClassifier
clf = RandomForestClassifier(bootstrap=True, class_weight=None, criterion='gini',
max_depth=None, max_features='auto', max_leaf_nodes=None,
min_impurity_split=1e-07, min_samples_leaf=1,
min_samples_split=2, min_weight_fraction_leaf=0.0,
n_estimators=50, n_jobs=1, oob_score=False, random_state=312,
verbose=0, warm_start=False)
eye_id = EyeCenterIdentifier(clf, step_size, N_steps)
t1 = time.time()
clf = eye_id.fit(train_X, train_y, train_pos)
print("Time to fit the model: {:.2f} seconds".format(time.time()-t1))
t1 = time.time()
#pickle the best model
with open('../pickles/best_model.pickle', 'wb') as finalized_model:
pickle.dump(eye_id, finalized_model)
data_pred = eye_id.predict(test_X, has_prob = True)
print("Time to make the prediction: {:.2f} seconds".format(time.time()-t1))
mse = eye_id.get_mse(data_pred, test_pos) #1.63
# Draw plots
# Draw the subplots
for i in range(40):
fig = plt.subplot(5, 8, (i+1))
fig = eye_id.draw_face(test_X.iloc[i])
plt.show()
# Draw the predicted positions
for i in range(40):
plt.subplot(5, 8, (i+1))
my_func.draw_results(test_X.iloc[i], test_pos.iloc[i], data_pred.iloc[i], pred_data_mean.iloc[0], draw_mean=True)
plt.show()
# draw the most accurate and the most wrong
data_pred_copy = data_pred.copy()
data_pred_copy.columns = test_pos.columns
data_pred_copy.index = test_pos.index
row_se = (data_pred_copy - test_pos).apply(np.square).sum(axis=1)
i_min = row_se.argmin() #0.34
i_max = row_se.argmax() #32.49
plt.subplot(2,2,1)
eye_id.draw_face(test_X.loc[i_min])
plt.subplot(2,2,2)
my_func.draw_results(test_X.loc[i_min], test_pos.loc[i_min], data_pred_copy.loc[i_min], pred_data_mean.iloc[0], draw_mean=True)
plt.subplot(2,2,3)
eye_id.draw_face(test_X.loc[i_max])
plt.subplot(2,2,4)
my_func.draw_results(test_X.loc[i_max], test_pos.loc[i_max], data_pred_copy.loc[i_max], pred_data_mean.iloc[0], draw_mean=True)
fig.show()
eye_id.draw_subplots(test_X.loc[i_min], 'left')
eye_id.draw_subplots(test_X.loc[i_min], 'right')
eye_id.draw_subplots(test_X.loc[i_max], 'left')
eye_id.draw_subplots(test_X.loc[i_max], 'right')
# Which ones has outlier eyes (not working)
# max left eye x
max_index = data_ori.left_eye_center_x.argmax()
image_max = my_func.str_split(data_ori.iloc[max_index].Image)
data_pred_max = eye_id.predict(image_max, True)
pos_max = data_ori.loc[max_index, ['left_eye_center_x', 'left_eye_center_y', 'right_eye_center_x', 'right_eye_center_y']]
mse_max = eye_id.get_mse(data_pred_max, pos_max)
# 1409 random forest
min_index = data_ori.right_eye_center_x.argmin()
image_min = my_func.str_split(data_ori.iloc[min_index].Image)
data_pred_min = eye_id.predict(image_min, True)
pos_min = data_ori.loc[min_index, ['left_eye_center_x', 'left_eye_center_y', 'right_eye_center_x', 'right_eye_center_y']]
mse_min = eye_id.get_mse(data_pred_min, pos_min) #601 random forest
eye_id.draw_subplots(image_max, 'left')
eye_id.draw_subplots(image_max, 'right')
eye_id.draw_subplots(image_min, 'left')
eye_id.draw_subplots(image_min, 'right')
plt.subplot(2,2,1)
eye_id.draw_face(image_max)
plt.subplot(2,2,2)
my_func.draw_results(image_max, pos_max, data_pred_max, pred_data_mean.iloc[0], draw_mean=True)
plt.subplot(2,2,3)
eye_id.draw_face(image_min)
plt.subplot(2,2,4)
my_func.draw_results(image_min, pos_min, data_pred_min, pred_data_mean.iloc[0], draw_mean=True)
plt.show()