-
Notifications
You must be signed in to change notification settings - Fork 14
/
lenet_exo.py
180 lines (140 loc) · 5.62 KB
/
lenet_exo.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
from __future__ import print_function
import tensorflow as tf
import numpy as np
import tensorflow.contrib.slim as slim
# Import MNIST data
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("/home/sid/MNIST", one_hot=True)
#mnist = input_data.read_data_sets("/Users/fabien/Datasets/MNIST", one_hot=True)
class MNIST_lenet(object):
"""
Class to construct a simple logistic regression on MNIST (i.e a neural net w/o hidden layer)
"""
def __init__(self, learning_rate, batch_size):
"""
Init the class with some parameters
:param learning_rate:
:param batch_size:
"""
# Parameters
self.learning_rate = learning_rate
self.mnist = mnist
self.batch_size = batch_size
self.num_epochs = 50
self.num_classes = 10
self.input_size = 784
self.input_weight, self.input_height = 28, 28
self.batch_per_epoch = int(self.mnist.train.num_examples/self.batch_size)
self.display_step = 1
# Placeholders
self.X = tf.placeholder(tf.float32, [None, 784]) # mnist data image of shape 28*28=784
self.Y = tf.placeholder(tf.float32, [None, 10]) # 0-9 digits recognition => 10 classes
def inference(self):
"""
LeNet
:return:
"""
# Write a lenet using the slim library
# https://github.com/tensorflow/tensorflow/tree/master/tensorflow/contrib/slim
self.logits = ?????
self.Y_hat = ????
def losses(self):
"""
Compute the cross entropy loss
:return:
"""
# cross entropy loss
self.loss = ?????
def optimizer(self):
"""
Create a optimizer and therefore a training operation
:return:
"""
# The optimizer
self.opt = tf.train.AdamOptimizer(self.learning_rate)
# Training operation to run later
self.train_op = self.opt.minimize(self.loss)
def metrics(self):
"""
Compute the accuracy
:return:
"""
# Label prediction of the model (the highest one)
self.predicted_label = tf.argmax(self.Y_hat, 1)
# Real class:
self.real_label = tf.argmax(self.Y, 1)
# Number of correct prediction
self.correct_prediction = tf.equal(self.predicted_label, self.real_label)
# Calculate accuracy
self.accuracy = tf.reduce_mean(tf.cast(self.correct_prediction, tf.float32))
self.accuracy = tf.mul(100.0, self.accuracy)
def train(self):
"""
Train the model on MNIST training set
:return:
"""
# Initializing the variables
init = tf.global_variables_initializer()
# Launch the graph
with tf.Session() as sess:
sess.run(init)
# Training cycle
for epoch in range(self.num_epochs): # 1 epoch = 1 loop over the entire training set
for s in range(self.batch_per_epoch):
# Get bacth fro MNIST training set
batch_xs, batch_ys = mnist.train.next_batch(self.batch_size)
# Apply the training op
(_,
loss_train,
accuracy_train) = sess.run([self.train_op,
self.loss,
self.accuracy],
feed_dict={self.X: batch_xs,
self.Y: batch_ys})
# Print loss and accuracy on the batch
if s % 20 == 0:
print("\033[1;37;40mStep: %04d , "
"TRAIN: loss = %.4f - accuracy = %.2f"
% ((epoch * self.batch_per_epoch + s),
loss_train, accuracy_train))
# Display logs per epoch step
if (epoch) % self.display_step == 0:
# Compute loss on validation set (only 200 random images)
(loss_val,
accuracy_val) = sess.run([self.loss,
self.accuracy],
feed_dict={self.X: mnist.test.images[:1000],
self.Y: mnist.test.labels[:1000]})
# Compute loss on training set (only 200 random images)
(loss_train,
accuracy_train) = sess.run([self.loss,
self.accuracy],
feed_dict={self.X: mnist.train.images[:1000],
self.Y: mnist.train.labels[:1000]})
print("\033[1;32;40mEpoch: %04d , "
"TRAIN: loss = %.4f - accuracy = %.2f | "
"VALIDATION: loss = %.4f - accuracy = %.2f"
% (epoch + 1,
loss_train, accuracy_train,
loss_val, accuracy_val))
def main(_):
"""
Main function
:param _:
:return:
"""
# Instanciate a MNIST class
model = MNIST_lenet(learning_rate=0.01,
batch_size=128)
# Setup the graph
model.inference()
# Compute loss and metrics
model.losses()
model.metrics()
# Create an optimzer
model.optimizer()
# And finally train your model!
model.train()
# To start the app for tensorflow
if __name__ == '__main__':
tf.app.run()