Mercurial > ift6266
annotate baseline/mlp/mlp_nist.py @ 414:3dba84c0fbc1
saving test score from best validation score in db now
author | xaviermuller |
---|---|
date | Thu, 29 Apr 2010 17:04:12 -0400 |
parents | 195f95c3d461 |
children | 868f82777839 |
rev | line source |
---|---|
110 | 1 """ |
2 This tutorial introduces the multilayer perceptron using Theano. | |
3 | |
4 A multilayer perceptron is a logistic regressor where | |
5 instead of feeding the input to the logistic regression you insert a | |
6 intermidiate layer, called the hidden layer, that has a nonlinear | |
7 activation function (usually tanh or sigmoid) . One can use many such | |
8 hidden layers making the architecture deep. The tutorial will also tackle | |
9 the problem of MNIST digit classification. | |
10 | |
11 .. math:: | |
12 | |
13 f(x) = G( b^{(2)} + W^{(2)}( s( b^{(1)} + W^{(1)} x))), | |
14 | |
15 References: | |
16 | |
17 - textbooks: "Pattern Recognition and Machine Learning" - | |
18 Christopher M. Bishop, section 5 | |
19 | |
20 TODO: recommended preprocessing, lr ranges, regularization ranges (explain | |
21 to do lr first, then add regularization) | |
22 | |
23 """ | |
24 __docformat__ = 'restructedtext en' | |
25 | |
355
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
26 import sys |
110 | 27 import pdb |
28 import numpy | |
29 import pylab | |
30 import theano | |
31 import theano.tensor as T | |
32 import time | |
33 import theano.tensor.nnet | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
34 import pylearn |
304
1e4bf5a5b46d
added type 2 adaptive learning configurable learning weight + versionning
xaviermuller
parents:
237
diff
changeset
|
35 import theano,pylearn.version,ift6266 |
110 | 36 from pylearn.io import filetensor as ft |
322 | 37 from ift6266 import datasets |
110 | 38 |
39 data_path = '/data/lisa/data/nist/by_class/' | |
40 | |
41 class MLP(object): | |
42 """Multi-Layer Perceptron Class | |
43 | |
44 A multilayer perceptron is a feedforward artificial neural network model | |
45 that has one layer or more of hidden units and nonlinear activations. | |
46 Intermidiate layers usually have as activation function thanh or the | |
47 sigmoid function while the top layer is a softamx layer. | |
48 """ | |
49 | |
50 | |
51 | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
52 def __init__(self, input, n_in, n_hidden, n_out,learning_rate): |
110 | 53 """Initialize the parameters for the multilayer perceptron |
54 | |
55 :param input: symbolic variable that describes the input of the | |
56 architecture (one minibatch) | |
57 | |
58 :param n_in: number of input units, the dimension of the space in | |
59 which the datapoints lie | |
60 | |
61 :param n_hidden: number of hidden units | |
62 | |
63 :param n_out: number of output units, the dimension of the space in | |
64 which the labels lie | |
65 | |
66 """ | |
67 | |
68 # initialize the parameters theta = (W1,b1,W2,b2) ; note that this | |
69 # example contains only one hidden layer, but one can have as many | |
70 # layers as he/she wishes, making the network deeper. The only | |
71 # problem making the network deep this way is during learning, | |
72 # backpropagation being unable to move the network from the starting | |
73 # point towards; this is where pre-training helps, giving a good | |
74 # starting point for backpropagation, but more about this in the | |
75 # other tutorials | |
76 | |
77 # `W1` is initialized with `W1_values` which is uniformely sampled | |
78 # from -6./sqrt(n_in+n_hidden) and 6./sqrt(n_in+n_hidden) | |
79 # the output of uniform if converted using asarray to dtype | |
80 # theano.config.floatX so that the code is runable on GPU | |
81 W1_values = numpy.asarray( numpy.random.uniform( \ | |
82 low = -numpy.sqrt(6./(n_in+n_hidden)), \ | |
83 high = numpy.sqrt(6./(n_in+n_hidden)), \ | |
84 size = (n_in, n_hidden)), dtype = theano.config.floatX) | |
85 # `W2` is initialized with `W2_values` which is uniformely sampled | |
86 # from -6./sqrt(n_hidden+n_out) and 6./sqrt(n_hidden+n_out) | |
87 # the output of uniform if converted using asarray to dtype | |
88 # theano.config.floatX so that the code is runable on GPU | |
89 W2_values = numpy.asarray( numpy.random.uniform( | |
90 low = -numpy.sqrt(6./(n_hidden+n_out)), \ | |
91 high= numpy.sqrt(6./(n_hidden+n_out)),\ | |
92 size= (n_hidden, n_out)), dtype = theano.config.floatX) | |
93 | |
94 self.W1 = theano.shared( value = W1_values ) | |
95 self.b1 = theano.shared( value = numpy.zeros((n_hidden,), | |
96 dtype= theano.config.floatX)) | |
97 self.W2 = theano.shared( value = W2_values ) | |
98 self.b2 = theano.shared( value = numpy.zeros((n_out,), | |
99 dtype= theano.config.floatX)) | |
100 | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
101 #include the learning rate in the classifer so |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
102 #we can modify it on the fly when we want |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
103 lr_value=learning_rate |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
104 self.lr=theano.shared(value=lr_value) |
110 | 105 # symbolic expression computing the values of the hidden layer |
106 self.hidden = T.tanh(T.dot(input, self.W1)+ self.b1) | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
107 |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
108 |
110 | 109 |
110 # symbolic expression computing the values of the top layer | |
111 self.p_y_given_x= T.nnet.softmax(T.dot(self.hidden, self.W2)+self.b2) | |
112 | |
113 # compute prediction as class whose probability is maximal in | |
114 # symbolic form | |
115 self.y_pred = T.argmax( self.p_y_given_x, axis =1) | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
116 self.y_pred_num = T.argmax( self.p_y_given_x[0:9], axis =1) |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
117 |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
118 |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
119 |
110 | 120 |
121 # L1 norm ; one regularization option is to enforce L1 norm to | |
122 # be small | |
123 self.L1 = abs(self.W1).sum() + abs(self.W2).sum() | |
124 | |
125 # square of L2 norm ; one regularization option is to enforce | |
126 # square of L2 norm to be small | |
127 self.L2_sqr = (self.W1**2).sum() + (self.W2**2).sum() | |
128 | |
129 | |
130 | |
131 def negative_log_likelihood(self, y): | |
132 """Return the mean of the negative log-likelihood of the prediction | |
133 of this model under a given target distribution. | |
134 | |
135 .. math:: | |
136 | |
137 \frac{1}{|\mathcal{D}|}\mathcal{L} (\theta=\{W,b\}, \mathcal{D}) = | |
138 \frac{1}{|\mathcal{D}|}\sum_{i=0}^{|\mathcal{D}|} \log(P(Y=y^{(i)}|x^{(i)}, W,b)) \\ | |
139 \ell (\theta=\{W,b\}, \mathcal{D}) | |
140 | |
141 | |
142 :param y: corresponds to a vector that gives for each example the | |
143 :correct label | |
144 """ | |
145 return -T.mean(T.log(self.p_y_given_x)[T.arange(y.shape[0]),y]) | |
146 | |
147 | |
148 | |
149 | |
150 def errors(self, y): | |
151 """Return a float representing the number of errors in the minibatch | |
152 over the total number of examples of the minibatch | |
153 """ | |
154 | |
155 # check if y has same dimension of y_pred | |
156 if y.ndim != self.y_pred.ndim: | |
157 raise TypeError('y should have the same shape as self.y_pred', | |
158 ('y', target.type, 'y_pred', self.y_pred.type)) | |
159 # check if y is of the correct datatype | |
160 if y.dtype.startswith('int'): | |
161 # the T.neq operator returns a vector of 0s and 1s, where 1 | |
162 # represents a mistake in prediction | |
163 return T.mean(T.neq(self.y_pred, y)) | |
164 else: | |
165 raise NotImplementedError() | |
166 | |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
167 def mlp_get_nist_error(model_name='/u/mullerx/ift6266h10_sandbox_db/xvm_final_lr1_p073/8/best_model.npy.npz', |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
168 data_set=0): |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
169 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
170 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
171 |
404 | 172 |
173 | |
174 | |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
175 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
176 # load the data set and create an mlp based on the dimensions of the model |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
177 model=numpy.load(model_name) |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
178 W1=model['W1'] |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
179 W2=model['W2'] |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
180 b1=model['b1'] |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
181 b2=model['b2'] |
404 | 182 |
183 total_error_count=0.0 | |
184 total_exemple_count=0.0 | |
185 | |
186 nb_error_count=0.0 | |
187 nb_exemple_count=0.0 | |
188 | |
189 char_error_count=0.0 | |
190 char_exemple_count=0.0 | |
191 | |
192 min_error_count=0.0 | |
193 min_exemple_count=0.0 | |
194 | |
195 maj_error_count=0.0 | |
196 maj_exemple_count=0.0 | |
197 | |
414
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
198 vtotal_error_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
199 vtotal_exemple_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
200 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
201 vnb_error_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
202 vnb_exemple_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
203 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
204 vchar_error_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
205 vchar_exemple_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
206 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
207 vmin_error_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
208 vmin_exemple_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
209 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
210 vmaj_error_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
211 vmaj_exemple_count=0.0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
212 |
404 | 213 |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
214 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
215 if data_set==0: |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
216 dataset=datasets.nist_all() |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
217 elif data_set==1: |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
218 dataset=datasets.nist_P07() |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
219 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
220 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
221 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
222 #get the test error |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
223 #use a batch size of 1 so we can get the sub-class error |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
224 #without messing with matrices (will be upgraded later) |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
225 test_score=0 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
226 temp=0 |
404 | 227 for xt,yt in dataset.test(1): |
228 | |
229 total_exemple_count = total_exemple_count +1 | |
230 #get activation for layer 1 | |
231 a0=numpy.dot(numpy.transpose(W1),numpy.transpose(xt[0])) + b1 | |
232 #add non linear function to layer 1 activation | |
233 a0_out=numpy.tanh(a0) | |
234 | |
235 #get activation for output layer | |
236 a1= numpy.dot(numpy.transpose(W2),a0_out) + b2 | |
237 #add non linear function for output activation (softmax) | |
238 a1_exp = numpy.exp(a1) | |
239 sum_a1=numpy.sum(a1_exp) | |
240 a1_out=a1_exp/sum_a1 | |
241 | |
242 predicted_class=numpy.argmax(a1_out) | |
243 wanted_class=yt[0] | |
244 if(predicted_class!=wanted_class): | |
245 total_error_count = total_error_count +1 | |
246 | |
247 #treat digit error | |
248 if(wanted_class<10): | |
249 nb_exemple_count=nb_exemple_count + 1 | |
250 predicted_class=numpy.argmax(a1_out[0:10]) | |
251 if(predicted_class!=wanted_class): | |
252 nb_error_count = nb_error_count +1 | |
253 | |
254 if(wanted_class>9): | |
255 char_exemple_count=char_exemple_count + 1 | |
256 predicted_class=numpy.argmax(a1_out[10:62])+10 | |
257 if((predicted_class!=wanted_class) and ((predicted_class+26)!=wanted_class) and ((predicted_class-26)!=wanted_class)): | |
258 char_error_count = char_error_count +1 | |
405 | 259 |
260 #minuscule | |
261 if(wanted_class>9 and wanted_class<36): | |
262 maj_exemple_count=maj_exemple_count + 1 | |
263 predicted_class=numpy.argmax(a1_out[10:35])+10 | |
264 if(predicted_class!=wanted_class): | |
265 maj_error_count = maj_error_count +1 | |
266 #majuscule | |
267 if(wanted_class>35): | |
268 min_exemple_count=min_exemple_count + 1 | |
269 predicted_class=numpy.argmax(a1_out[36:62])+36 | |
270 if(predicted_class!=wanted_class): | |
271 min_error_count = min_error_count +1 | |
404 | 272 |
273 | |
414
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
274 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
275 vtest_score=0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
276 vtemp=0 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
277 for xt,yt in dataset.valid(1): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
278 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
279 vtotal_exemple_count = vtotal_exemple_count +1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
280 #get activation for layer 1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
281 a0=numpy.dot(numpy.transpose(W1),numpy.transpose(xt[0])) + b1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
282 #add non linear function to layer 1 activation |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
283 a0_out=numpy.tanh(a0) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
284 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
285 #get activation for output layer |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
286 a1= numpy.dot(numpy.transpose(W2),a0_out) + b2 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
287 #add non linear function for output activation (softmax) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
288 a1_exp = numpy.exp(a1) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
289 sum_a1=numpy.sum(a1_exp) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
290 a1_out=a1_exp/sum_a1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
291 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
292 predicted_class=numpy.argmax(a1_out) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
293 wanted_class=yt[0] |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
294 if(predicted_class!=wanted_class): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
295 vtotal_error_count = vtotal_error_count +1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
296 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
297 #treat digit error |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
298 if(wanted_class<10): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
299 vnb_exemple_count=vnb_exemple_count + 1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
300 predicted_class=numpy.argmax(a1_out[0:10]) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
301 if(predicted_class!=wanted_class): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
302 vnb_error_count = vnb_error_count +1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
303 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
304 if(wanted_class>9): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
305 vchar_exemple_count=vchar_exemple_count + 1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
306 predicted_class=numpy.argmax(a1_out[10:62])+10 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
307 if((predicted_class!=wanted_class) and ((predicted_class+26)!=wanted_class) and ((predicted_class-26)!=wanted_class)): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
308 vchar_error_count = vchar_error_count +1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
309 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
310 #minuscule |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
311 if(wanted_class>9 and wanted_class<36): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
312 vmaj_exemple_count=vmaj_exemple_count + 1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
313 predicted_class=numpy.argmax(a1_out[10:35])+10 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
314 if(predicted_class!=wanted_class): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
315 vmaj_error_count = vmaj_error_count +1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
316 #majuscule |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
317 if(wanted_class>35): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
318 vmin_exemple_count=vmin_exemple_count + 1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
319 predicted_class=numpy.argmax(a1_out[36:62])+36 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
320 if(predicted_class!=wanted_class): |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
321 vmin_error_count = vmin_error_count +1 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
322 |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
323 |
404 | 324 print (('total error = %f') % ((total_error_count/total_exemple_count)*100.0)) |
325 print (('number error = %f') % ((nb_error_count/nb_exemple_count)*100.0)) | |
326 print (('char error = %f') % ((char_error_count/char_exemple_count)*100.0)) | |
405 | 327 print (('min error = %f') % ((min_error_count/min_exemple_count)*100.0)) |
328 print (('maj error = %f') % ((maj_error_count/maj_exemple_count)*100.0)) | |
414
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
329 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
330 print (('valid total error = %f') % ((vtotal_error_count/vtotal_exemple_count)*100.0)) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
331 print (('valid number error = %f') % ((vnb_error_count/vnb_exemple_count)*100.0)) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
332 print (('valid char error = %f') % ((vchar_error_count/vchar_exemple_count)*100.0)) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
333 print (('valid min error = %f') % ((vmin_error_count/vmin_exemple_count)*100.0)) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
334 print (('valid maj error = %f') % ((vmaj_error_count/vmaj_exemple_count)*100.0)) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
335 |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
336 print ((' num total = %d,%d') % (total_exemple_count,total_error_count)) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
337 print ((' num nb = %d,%d') % (nb_exemple_count,nb_error_count)) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
338 print ((' num min = %d,%d') % (min_exemple_count,min_error_count)) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
339 print ((' num maj = %d,%d') % (maj_exemple_count,maj_error_count)) |
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
340 print ((' num char = %d,%d') % (char_exemple_count,char_error_count)) |
404 | 341 return (total_error_count/total_exemple_count)*100.0 |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
342 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
343 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
344 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
345 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
346 |
110 | 347 |
304
1e4bf5a5b46d
added type 2 adaptive learning configurable learning weight + versionning
xaviermuller
parents:
237
diff
changeset
|
348 def mlp_full_nist( verbose = 1,\ |
145
8ceaaf812891
changed adaptive lr flag from bool to int for jobman issues
XavierMuller
parents:
143
diff
changeset
|
349 adaptive_lr = 0,\ |
322 | 350 data_set=0,\ |
110 | 351 learning_rate=0.01,\ |
352 L1_reg = 0.00,\ | |
353 L2_reg = 0.0001,\ | |
354 nb_max_exemples=1000000,\ | |
355 batch_size=20,\ | |
322 | 356 nb_hidden = 30,\ |
212
e390b0454515
added classic lr time decay and py code to calculate the error based on a saved model
xaviermuller
parents:
169
diff
changeset
|
357 nb_targets = 62, |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
358 tau=1e6,\ |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
359 lr_t2_factor=0.5,\ |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
360 init_model=0,\ |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
361 channel=0): |
110 | 362 |
363 | |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
364 if channel!=0: |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
365 channel.save() |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
366 configuration = [learning_rate,nb_max_exemples,nb_hidden,adaptive_lr] |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
367 |
212
e390b0454515
added classic lr time decay and py code to calculate the error based on a saved model
xaviermuller
parents:
169
diff
changeset
|
368 #save initial learning rate if classical adaptive lr is used |
e390b0454515
added classic lr time decay and py code to calculate the error based on a saved model
xaviermuller
parents:
169
diff
changeset
|
369 initial_lr=learning_rate |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
370 max_div_count=1000 |
414
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
371 optimal_test_error=0 |
323 | 372 |
212
e390b0454515
added classic lr time decay and py code to calculate the error based on a saved model
xaviermuller
parents:
169
diff
changeset
|
373 |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
374 total_validation_error_list = [] |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
375 total_train_error_list = [] |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
376 learning_rate_list=[] |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
377 best_training_error=float('inf'); |
323 | 378 divergence_flag_list=[] |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
379 |
322 | 380 if data_set==0: |
378 | 381 print 'using nist' |
322 | 382 dataset=datasets.nist_all() |
323 | 383 elif data_set==1: |
378 | 384 print 'using p07' |
323 | 385 dataset=datasets.nist_P07() |
349
22efb4968054
added pnist support, will check in code for data set iterator later
xaviermuller
parents:
338
diff
changeset
|
386 elif data_set==2: |
378 | 387 print 'using pnist' |
349
22efb4968054
added pnist support, will check in code for data set iterator later
xaviermuller
parents:
338
diff
changeset
|
388 dataset=datasets.PNIST07() |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
389 |
212
e390b0454515
added classic lr time decay and py code to calculate the error based on a saved model
xaviermuller
parents:
169
diff
changeset
|
390 |
110 | 391 |
392 | |
393 ishape = (32,32) # this is the size of NIST images | |
394 | |
395 # allocate symbolic variables for the data | |
396 x = T.fmatrix() # the data is presented as rasterized images | |
397 y = T.lvector() # the labels are presented as 1D vector of | |
398 # [long int] labels | |
399 | |
322 | 400 |
110 | 401 # construct the logistic regression class |
322 | 402 classifier = MLP( input=x,\ |
110 | 403 n_in=32*32,\ |
404 n_hidden=nb_hidden,\ | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
405 n_out=nb_targets, |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
406 learning_rate=learning_rate) |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
407 |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
408 |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
409 # check if we want to initialise the weights with a previously calculated model |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
410 # dimensions must be consistent between old model and current configuration!!!!!! (nb_hidden and nb_targets) |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
411 if init_model!=0: |
378 | 412 print 'using old model' |
413 print init_model | |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
414 old_model=numpy.load(init_model) |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
415 classifier.W1.value=old_model['W1'] |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
416 classifier.W2.value=old_model['W2'] |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
417 classifier.b1.value=old_model['b1'] |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
418 classifier.b2.value=old_model['b2'] |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
419 |
110 | 420 |
421 # the cost we minimize during training is the negative log likelihood of | |
422 # the model plus the regularization terms (L1 and L2); cost is expressed | |
423 # here symbolically | |
424 cost = classifier.negative_log_likelihood(y) \ | |
425 + L1_reg * classifier.L1 \ | |
426 + L2_reg * classifier.L2_sqr | |
427 | |
428 # compiling a theano function that computes the mistakes that are made by | |
429 # the model on a minibatch | |
430 test_model = theano.function([x,y], classifier.errors(y)) | |
431 | |
432 # compute the gradient of cost with respect to theta = (W1, b1, W2, b2) | |
433 g_W1 = T.grad(cost, classifier.W1) | |
434 g_b1 = T.grad(cost, classifier.b1) | |
435 g_W2 = T.grad(cost, classifier.W2) | |
436 g_b2 = T.grad(cost, classifier.b2) | |
437 | |
438 # specify how to update the parameters of the model as a dictionary | |
439 updates = \ | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
440 { classifier.W1: classifier.W1 - classifier.lr*g_W1 \ |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
441 , classifier.b1: classifier.b1 - classifier.lr*g_b1 \ |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
442 , classifier.W2: classifier.W2 - classifier.lr*g_W2 \ |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
443 , classifier.b2: classifier.b2 - classifier.lr*g_b2 } |
110 | 444 |
445 # compiling a theano function `train_model` that returns the cost, but in | |
446 # the same time updates the parameter of the model based on the rules | |
447 # defined in `updates` | |
448 train_model = theano.function([x, y], cost, updates = updates ) | |
322 | 449 |
450 | |
451 | |
110 | 452 |
453 | |
454 | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
455 |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
456 |
110 | 457 |
458 #conditions for stopping the adaptation: | |
323 | 459 #1) we have reached nb_max_exemples (this is rounded up to be a multiple of the train size so we always do at least 1 epoch) |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
460 #2) validation error is going up twice in a row(probable overfitting) |
110 | 461 |
462 # This means we no longer stop on slow convergence as low learning rates stopped | |
323 | 463 # too fast but instead we will wait for the valid error going up 3 times in a row |
464 # We save the curb of the validation error so we can always go back to check on it | |
465 # and we save the absolute best model anyway, so we might as well explore | |
466 # a bit when diverging | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
467 |
323 | 468 #approximate number of samples in the nist training set |
322 | 469 #this is just to have a validation frequency |
323 | 470 #roughly proportionnal to the original nist training set |
322 | 471 n_minibatches = 650000/batch_size |
472 | |
473 | |
323 | 474 patience =2*nb_max_exemples/batch_size #in units of minibatch |
110 | 475 validation_frequency = n_minibatches/4 |
476 | |
477 | |
478 | |
479 | |
322 | 480 |
110 | 481 best_validation_loss = float('inf') |
482 best_iter = 0 | |
483 test_score = 0. | |
484 start_time = time.clock() | |
212
e390b0454515
added classic lr time decay and py code to calculate the error based on a saved model
xaviermuller
parents:
169
diff
changeset
|
485 time_n=0 #in unit of exemples |
322 | 486 minibatch_index=0 |
487 epoch=0 | |
488 temp=0 | |
323 | 489 divergence_flag=0 |
322 | 490 |
212
e390b0454515
added classic lr time decay and py code to calculate the error based on a saved model
xaviermuller
parents:
169
diff
changeset
|
491 |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
492 |
355
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
493 |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
494 print 'starting training' |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
495 sys.stdout.flush() |
322 | 496 while(minibatch_index*batch_size<nb_max_exemples): |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
497 |
322 | 498 for x, y in dataset.train(batch_size): |
110 | 499 |
323 | 500 #if we are using the classic learning rate deacay, adjust it before training of current mini-batch |
322 | 501 if adaptive_lr==2: |
502 classifier.lr.value = tau*initial_lr/(tau+time_n) | |
503 | |
504 | |
505 #train model | |
506 cost_ij = train_model(x,y) | |
507 | |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
508 if (minibatch_index) % validation_frequency == 0: |
322 | 509 #save the current learning rate |
510 learning_rate_list.append(classifier.lr.value) | |
323 | 511 divergence_flag_list.append(divergence_flag) |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
512 |
355
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
513 |
322 | 514 |
515 # compute the validation error | |
516 this_validation_loss = 0. | |
517 temp=0 | |
518 for xv,yv in dataset.valid(1): | |
519 # sum up the errors for each minibatch | |
323 | 520 this_validation_loss += test_model(xv,yv) |
322 | 521 temp=temp+1 |
522 # get the average by dividing with the number of minibatches | |
523 this_validation_loss /= temp | |
524 #save the validation loss | |
525 total_validation_error_list.append(this_validation_loss) | |
355
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
526 |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
527 print(('epoch %i, minibatch %i, learning rate %f current validation error %f ') % |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
528 (epoch, minibatch_index+1,classifier.lr.value, |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
529 this_validation_loss*100.)) |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
530 sys.stdout.flush() |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
531 |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
532 #save temp results to check during training |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
533 numpy.savez('temp_results.npy',config=configuration,total_validation_error_list=total_validation_error_list,\ |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
534 learning_rate_list=learning_rate_list, divergence_flag_list=divergence_flag_list) |
322 | 535 |
536 # if we got the best validation score until now | |
537 if this_validation_loss < best_validation_loss: | |
538 # save best validation score and iteration number | |
539 best_validation_loss = this_validation_loss | |
540 best_iter = minibatch_index | |
323 | 541 #reset divergence flag |
542 divergence_flag=0 | |
543 | |
544 #save the best model. Overwrite the current saved best model so | |
545 #we only keep the best | |
546 numpy.savez('best_model.npy', config=configuration, W1=classifier.W1.value, W2=classifier.W2.value, b1=classifier.b1.value,\ | |
547 b2=classifier.b2.value, minibatch_index=minibatch_index) | |
548 | |
322 | 549 # test it on the test set |
550 test_score = 0. | |
551 temp =0 | |
552 for xt,yt in dataset.test(batch_size): | |
553 test_score += test_model(xt,yt) | |
554 temp = temp+1 | |
555 test_score /= temp | |
355
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
556 |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
557 print(('epoch %i, minibatch %i, test error of best ' |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
558 'model %f %%') % |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
559 (epoch, minibatch_index+1, |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
560 test_score*100.)) |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
561 sys.stdout.flush() |
414
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
562 optimal_test_error=test_score |
322 | 563 |
564 # if the validation error is going up, we are overfitting (or oscillating) | |
323 | 565 # check if we are allowed to continue and if we will adjust the learning rate |
322 | 566 elif this_validation_loss >= best_validation_loss: |
323 | 567 |
568 | |
569 # In non-classic learning rate decay, we modify the weight only when | |
570 # validation error is going up | |
571 if adaptive_lr==1: | |
572 classifier.lr.value=classifier.lr.value*lr_t2_factor | |
573 | |
574 | |
575 #cap the patience so we are allowed to diverge max_div_count times | |
576 #if we are going up max_div_count in a row, we will stop immediatelty by modifying the patience | |
577 divergence_flag = divergence_flag +1 | |
578 | |
579 | |
322 | 580 #calculate the test error at this point and exit |
581 # test it on the test set | |
582 test_score = 0. | |
583 temp=0 | |
584 for xt,yt in dataset.test(batch_size): | |
585 test_score += test_model(xt,yt) | |
586 temp=temp+1 | |
587 test_score /= temp | |
355
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
588 |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
589 print ' validation error is going up, possibly stopping soon' |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
590 print((' epoch %i, minibatch %i, test error of best ' |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
591 'model %f %%') % |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
592 (epoch, minibatch_index+1, |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
593 test_score*100.)) |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
594 sys.stdout.flush() |
322 | 595 |
596 | |
597 | |
323 | 598 # check early stop condition |
599 if divergence_flag==max_div_count: | |
600 minibatch_index=nb_max_exemples | |
601 print 'we have diverged, early stopping kicks in' | |
602 break | |
603 | |
604 #check if we have seen enough exemples | |
605 #force one epoch at least | |
606 if epoch>0 and minibatch_index*batch_size>nb_max_exemples: | |
322 | 607 break |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
608 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
609 |
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
610 |
322 | 611 |
612 | |
613 time_n= time_n + batch_size | |
323 | 614 minibatch_index = minibatch_index + 1 |
615 | |
616 # we have finished looping through the training set | |
322 | 617 epoch = epoch+1 |
110 | 618 end_time = time.clock() |
355
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
619 |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
620 print(('Optimization complete. Best validation score of %f %% ' |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
621 'obtained at iteration %i, with test performance %f %%') % |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
622 (best_validation_loss * 100., best_iter, test_score*100.)) |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
623 print ('The code ran for %f minutes' % ((end_time-start_time)/60.)) |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
624 print minibatch_index |
76b7182dd32e
added support for pnist in iterator. corrected a print bug in mlp
xaviermuller
parents:
349
diff
changeset
|
625 sys.stdout.flush() |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
626 |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
627 #save the model and the weights |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
628 numpy.savez('model.npy', config=configuration, W1=classifier.W1.value,W2=classifier.W2.value, b1=classifier.b1.value,b2=classifier.b2.value) |
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
629 numpy.savez('results.npy',config=configuration,total_train_error_list=total_train_error_list,total_validation_error_list=total_validation_error_list,\ |
323 | 630 learning_rate_list=learning_rate_list, divergence_flag_list=divergence_flag_list) |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
631 |
414
3dba84c0fbc1
saving test score from best validation score in db now
xaviermuller
parents:
405
diff
changeset
|
632 return (best_training_error*100.0,best_validation_loss * 100.,optimal_test_error*100.,best_iter*batch_size,(end_time-start_time)/60) |
110 | 633 |
634 | |
635 if __name__ == '__main__': | |
636 mlp_full_mnist() | |
637 | |
638 def jobman_mlp_full_nist(state,channel): | |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
639 (train_error,validation_error,test_error,nb_exemples,time)=mlp_full_nist(learning_rate=state.learning_rate,\ |
304
1e4bf5a5b46d
added type 2 adaptive learning configurable learning weight + versionning
xaviermuller
parents:
237
diff
changeset
|
640 nb_max_exemples=state.nb_max_exemples,\ |
1e4bf5a5b46d
added type 2 adaptive learning configurable learning weight + versionning
xaviermuller
parents:
237
diff
changeset
|
641 nb_hidden=state.nb_hidden,\ |
1e4bf5a5b46d
added type 2 adaptive learning configurable learning weight + versionning
xaviermuller
parents:
237
diff
changeset
|
642 adaptive_lr=state.adaptive_lr,\ |
1e4bf5a5b46d
added type 2 adaptive learning configurable learning weight + versionning
xaviermuller
parents:
237
diff
changeset
|
643 tau=state.tau,\ |
1e4bf5a5b46d
added type 2 adaptive learning configurable learning weight + versionning
xaviermuller
parents:
237
diff
changeset
|
644 verbose = state.verbose,\ |
324 | 645 lr_t2_factor=state.lr_t2_factor, |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
646 data_set=state.data_set, |
378 | 647 init_model=state.init_model, |
338
fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
xaviermuller
parents:
324
diff
changeset
|
648 channel=channel) |
143
f341a4efb44a
added adaptive lr, weight file save, traine error and error curves
XavierMuller
parents:
110
diff
changeset
|
649 state.train_error=train_error |
110 | 650 state.validation_error=validation_error |
651 state.test_error=test_error | |
652 state.nb_exemples=nb_exemples | |
653 state.time=time | |
304
1e4bf5a5b46d
added type 2 adaptive learning configurable learning weight + versionning
xaviermuller
parents:
237
diff
changeset
|
654 pylearn.version.record_versions(state,[theano,ift6266,pylearn]) |
110 | 655 return channel.COMPLETE |
656 | |
657 |