-
Notifications
You must be signed in to change notification settings - Fork 0
/
exo_retropropagationNhidden_layers_matrix_v2.py
435 lines (286 loc) · 14.9 KB
/
exo_retropropagationNhidden_layers_matrix_v2.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
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
# L'algorithme de rétro-propagation du gradient dans un
# réseau de neurones avec N couches cachées.
# D. Mattei
# python3.11 -O exo_retropropagationNhidden_layers_matrix_v2.py
# MacOS users : use MacVim to show ALL the characters of this file (not Emacs, not Aquamacs)
# jeu de couleurs: Torte ou Koehler
from random import seed, uniform,randint
seed(1789) # si vous voulez avoir les mêmes tirages aléatoires à chaque exécution du fichier !
from math import exp, pow, pi, sin , tanh , atan
from Matrix import Matrix
from time import time
# sigmoïde
def σ(z̃):
try:
s = 1/(1+exp(-z̃))
except OverflowError as e:
# Somehow no exception is caught here...
#print('OverflowError...')
#print("x=",x)
#sys.exit(1)
s = 0
except Exception as e:
print(e)
return s
# not used
def σࠤ(z):
return σ(z)*(1-σ(z))
# not used
def tanhࠤ(x):
return 1 - tanh(x)**2
def der_tanh(z,z̃):
return 1 - z**2
def der_σ(z,z̃):
return z*(1-z)
def leaky_RELU(z̃):
return max(0.01*z̃,z̃)
def der_leaky_RELU(z,z̃):
return 1 if z>=0 else 0.01
def RELU(z̃):
return max(0,z̃)
def der_RELU(z,z̃):
return 1 if z>=0 else 0
def swish(z̃):
return z̃ * σ(z̃)
def der_swish(z,z̃):
return z + σ(z̃) * (1 - z)
def der_atan(z,z̃):
return 1 / (1 + pow(z̃,2))
class ReseauRetroPropagation():
def __init__(self,nc=[2,3,1], nbiter=3, ηₛ=1.0 , #ηₑ=0.0001 ,
activation_function_hidden_layer=tanh,
activation_function_output_layer=tanh,
activation_function_hidden_layer_derivative=der_tanh,
activation_function_output_layer_derivative=der_tanh):
'''Construit un réseau de neurones avec plusieurs couches cachées. Il y a des entrées (+ biais),
des neurones dans les couches cachées (+ biais) et des neurones en sortie dont les nombres sont définies dans nc.'''
lnc = len(nc) # the total of all layer including input, output and hidden layers
# on crée le tableau des couches du réseau
# >>> nc=[2,3,1]
# >>> [ [0] * n for n in nc ]
# [[0, 0], [0, 0, 0], [0]]
self.z = [ [0] * n for n in nc ] # les entrées concrètes seront fournies avec la méthode accepte
self.z̃ = [ [0] * n for n in nc ] # z̃[0] is not used as z[0] is x, the initial data
# nc[n] + 1 in the matrix size because we add one column of bias in the matrix for each hidden neuron of the hidden layer "c"
# >>> M = [ Matrix( lambda j,i: uniform(-1,1) , nc[n+1] , nc[n] + 1 ) for n in range(len(nc)-1) ]
# # Matrix constructor Matrix (function,Numeric,Numeric) #
# # Matrix constructor Matrix (function,Numeric,Numeric) #
# [[[ 0.30891168 -0.06324858 -0.77054504]
# [ 0.56467559 0.4090438 -0.6001032 ]
# [ 0.04621124 -0.4736403 0.52908111]]
# Matrix @ 0x7f14c2dfa090
# , [[-0.17710618 -0.32836366 -0.81737218 0.65399886]]
# Matrix @ 0x7f14c2d9bad0
# ]
# >>> print(M[0])
# [[ 0.0865122 0.48109634 -0.88726825]
# [-0.62196803 -0.02562076 -0.12770346]
# [-0.19076204 -0.38836422 -0.91260862]]
# use with M[0][1][2] notation
#M[i][j][k] == poids k->j from layer i to layer i+1
self.M = [ Matrix( lambda j,i: uniform(-1,1) , nc[n+1] , nc[n] + 1 ) for n in range(lnc - 1) ]
# for n in range(lnc - 1):
# print("self.M[",n,"]=");print(self.M[n])
# >>> ᐁ = [ [0] * n for n in nc ]
# >>> ᐁ
# [[0, 0], [0, 0, 0], [0]]
self.ᐁ = [ [0] * n for n in nc ] # gradients locaux des neurones cachés et gradient sur la couche de sortie
# ᐁ[0] is useless but keep same index with z
self.nbiter = nbiter
# "learning rate"
self.ηₛ = ηₛ
#self.ηₑ = ηₑ
self.error = 0
self.activation_function_hidden_layer = activation_function_hidden_layer
self.activation_function_output_layer = activation_function_output_layer
self.activation_function_hidden_layer_derivative = activation_function_hidden_layer_derivative
self.activation_function_output_layer_derivative = activation_function_output_layer_derivative
# forward propagation
# fusionne accept et propage
# z_* sans le coef. 1 constant pour le bias
def accepte_et_propage(self,x): # on entre des entrées et on les propage
# note: i just reference the variables for code readness (hide all the self keyword)
z = self.z
z̃ = self.z̃
M = self.M
if len(x) != len(z[0]):
raise ValueError("Mauvais nombre d'entrées !")
#z[0] = x # on ne touche pas au biais
self.z[0] = z[0] = x
# propagation des entrées vers la sortie
n = len(z)
# hidden layers
for i in range(n-2) :
# calcul des stimuli reçus par la couche cachée d'indice i+1 à-partir de la précedente
# create a list with 1 in front for the bias coefficient
z_1 = [1] + z[i]
z̃[i+1] = M[i] * z_1 # z̃ = matrix * iterable (list here) , return a list
# calcul des réponses des neurones cachés
#z[i+1] = list(map(σ,z̃))
#z[i+1] = list(map(tanh,z̃))
z[i+1] = list(map(self.activation_function_hidden_layer,z̃[i+1]))
# update the variable when necessary
self.z[i+1] = z[i+1]
self.z̃[i+1] = z̃[i+1]
# output layer
i = i + 1
# calcul des stimuli reçus par la couche cachée d'indice i+1 à-partir de la précedente
# create a list with 1 in front for the bias coefficient
z_1 = [1] + z[i]
z̃[i+1] = M[i] * z_1 # z̃ = matrix * iterable (list here)
# calcul des réponses des neurones de la couche de sortie
z[i+1] = list(map(self.activation_function_output_layer,z̃[i+1]))
# update the variable when necessary
self.z[i+1] = z[i+1]
self.z̃[i+1] = z̃[i+1]
#print("accepte_et_propage : self.z[i+1] ="); print(self.z[i+1])
#return self.z[i+1] # et retour des sorties
def print_matrix_elements(self,M):
for e in M:
print(e)
print()
# not used
def η(self,n):
ηₛ = self.ηₛ
N = self.nbiter
# if n < N/3:
# return ((0.1 - ηₛ) / (N/3)) * n + ηₛ
# else:
# return 1/10**(1+int(((n-N/3)/(N-N/3))*10))
return ηₛ/10**(int((n/N)*10))
def apprentissage(self,Lexemples): # apprentissage des poids par une liste d'exemples
nbiter = self.nbiter
ip = 0 # numéro de l'exemple courant
# TODO: take in account the error as stop point
for it in range(nbiter): # le nombre d'itérations est fixé !
error = 0.0 # l'erreur totale pour cet exemple
(x,y) = Lexemples[ip] # un nouvel exemple à apprendre
# PROPAGATION VERS L'AVANT
self.accepte_et_propage(x) # sorties obtenues sur l'exemple courant, self.z_k et z_j sont mis à jour
# RETRO_PROPAGATION VERS L'ARRIERE, EN DEUX TEMPS
# note: i just use local reference for the variables for code readness (hide all the self keyword)
z = self.z
z̃ = self.z̃
i = i_output_layer = len(z) - 1 # start at index i of the ouput layer
ᐁ = self.ᐁ
ns = len(z[i])
# TEMPS 1. calcul des gradients locaux sur la couche k de sortie (les erreurs commises)
for k in range(ns):
ᐁ[i][k] = y[k] - z[i][k] # gradient sur un neurone de sortie (erreur locale)
error += pow(ᐁ[i][k],2) # l'erreur quadratique totale
error *= 0.5
if it == nbiter-1 : self.error = error # mémorisation de l'erreur totale à la dernière itération
# modification des poids de la matrice de transition de la derniére couche de neurones cachés à la couche de sortie
M = self.M # read/write data
# because i dislike self keyword in my mathematical expressions i recopy the variables
η = self.ηₛ
#η = self.η(it)
#print(η)
# (test fait: modifier la matrice apres le calcul du gradient de la couche j (maintenant i-1) , conclusion: ne change pas la convergence de l'algo)
მzⳆმz̃ = self.activation_function_output_layer_derivative
self.modification_des_poids(M[i-1],η,z[i-1],z[i],z̃[i],ᐁ[i],მzⳆმz̃)
#self.print_matrix_elements(M)
# TEMPS 2. calcul des gradients locaux sur les couches cachées (rétro-propagation), sauf pour le bias constant
მzⳆმz̃ = self.activation_function_hidden_layer_derivative
for i in reversed(range(1,i_output_layer)) :
nc = len(z[i])
ns = len(z[i+1])
for j in range(nc):
ᐁ[i][j] = sum(მzⳆმz̃(z[i+1][k],z̃[i+1][k]) * M[i][k][j+1] * ᐁ[i+1][k] for k in range(ns))
# modification des poids de la matrice de transition de la couche i-1 à i
self.modification_des_poids(M[i-1],η,z[i-1],z[i],z̃[i],ᐁ[i],მzⳆმz̃)
#self.print_matrix_elements(M)
# et l'on passe à l'exemple suivant
#ip = (ip + 1) % len(Lexemples) # parcours des exemples en ordre circulaire
ip = randint(0,len(Lexemples) - 1)
# modify coefficients layer
def modification_des_poids(self,M_i_o,η,z_input,z_output,z̃_output,ᐁ_i_o,მzⳆმz̃): # derivative of activation function of the layer
#print(z̃_output)
# the length of output and input layer with coeff. used for bias update
(len_layer_output, len_layer_input_plus1forBias) = M_i_o.dim()
len_layer_input = len_layer_input_plus1forBias - 1
#print("modification_des_poids : len_layer_input = ", len_layer_input)
#print("modification_des_poids : len_layer_output = ", len_layer_output)
for j in range(len_layer_output): # line
#print("modification_des_poids : j = ", j)
for i in range(len_layer_input): # column , parcours les colonnes de la ligne sauf le bias
#print("modification_des_poids : i = ", i)
M_i_o[j][i+1] -= -η * z_input[i] * მzⳆმz̃(z_output[j],z̃_output[j]) * ᐁ_i_o[j]
# and update the bias
M_i_o[j][0] -= -η * 1.0 * მzⳆმz̃(z_output[j],z̃_output[j]) * ᐁ_i_o[j]
def dump(self,n,msg): # dump du réseau en entrant dans l'itération numéro n
print('---------- DUMP',msg,'itération numéro',n)
print('M :') ; print(self.M)
print('z :',self.z)
print('ᐁ :',self.ᐁ)
print()
def test(self,Lexemples):
print('Test des exemples :')
error = 0
for (entree,sortie_attendue) in Lexemples:
self.accepte_et_propage(entree)
print(entree,'-->',self.z[len(self.z)-1],': on attendait',sortie_attendue)
ᐁ = sortie_attendue[0] - self.z[len(self.z)-1][0] # erreur sur un element
error += pow(ᐁ,2) # l'erreur quadratique totale
error *= 0.5
print("Error on examples=") ; print(error)
precision = 2
def trunc(x):
return round(x,precision)
def trunc3(x):
return round(x,3)
if __name__ == '__main__':
print('################## NOT ##################')
r1 = ReseauRetroPropagation([1,2,1],5000,10,σ,σ,der_σ,der_σ)
Lexemples1 = [[[1],[0]],[[0],[1]]]
START = time() ; r1.apprentissage(Lexemples1) ; END = time()
r1.test(Lexemples1)
print('APPRENTISSAGE sur {} itérations, time = {:.2f}s'.format(r1.nbiter,END-START))
print()
print("Error=") ; print(r1.error)
print("r1.M=",r1.M)
for mt in r1.M:
mt.apply(trunc) # apply truncature on all coefficients of the matrices of the deep neural network
print("aprés modif M=",r1.M)
r1.test(Lexemples1)
#for i in range(100):
print('################## XOR ##################')
# 2 entrées (+ bias), 1 neurone en sortie
#r2 = ReseauRetroPropagation([2,3,1],250000,10,σ,σ,der_σ,der_σ)
r2 = ReseauRetroPropagation([2,8,1],250000,0.1,σ,σ,der_σ,der_σ)
#r2 = ReseauRetroPropagation([2,8,10,7,1],50000,0.1,0.001,σ,σ,der_σ,der_σ)
Lexemples2 = [[[1,0],[1]], [[0,0],[0]], [[0,1],[1]], [[1,1],[0]]]
START = time() ; r2.apprentissage(Lexemples2) ; END = time()
print('APPRENTISSAGE sur {} itérations, time = {:.2f}s'.format(r2.nbiter,END-START))
r2.test(Lexemples2)
print("Error=") ; print(r2.error)
print("r2.M=",r2.M)
for mt in r2.M:
mt.apply(trunc)
print("aprés modif M=",r2.M)
r2.test(Lexemples2)
print('################## SINUS ##################')
#r3 = ReseauRetroPropagation([1,30,30,30,1],50000,0.1,tanh,tanh,der_tanh,der_tanh)
#r3 = ReseauRetroPropagation([1,30,30,30,1],50000,0.01,atan,tanh,der_atan,der_tanh)
#r3 = ReseauRetroPropagation([1,70,70,1],50000,0.01,tanh,tanh,der_tanh,der_tanh)
r3 = ReseauRetroPropagation([1,70,70,1],50000,0.01,atan,tanh,der_atan,der_tanh)
Llearning = [ [[x],[sin(x)]] for x in [ uniform(-pi,pi) for n in range(10000)] ]
Ltest = [ [[x],[sin(x)]] for x in [ uniform(-pi/2,pi/2) for n in range(10)] ]
START = time() ; r3.apprentissage(Llearning) ; END = time()
print('APPRENTISSAGE sur {} itérations, time = {:.2f}s'.format(r3.nbiter,END-START))
r3.test(Ltest)
print("Error=") ; print(r3.error)
print("r3.M=",r3.M)
for mt in r3.M:
mt.apply(trunc3)
print("aprés modif M=",r3.M)
r3.test(Ltest)
# COMPLEMENTS EN LIGNE
#from webbrowser import open as browse
# Beaucoup de matériel sur la page Web de Geoffrey Hinton à Toronto, en particulier
# l'article paru dans la revue "Nature" de 2015, et l'ancien MOOC de 2012 :
#browse('https://www.cs.toronto.edu/~hinton/')
# Si vous voulez vous lancer vraiment (avec TensorFlow de Google) :
#browse('https://developers.google.com/machine-learning/crash-course/?hl=fr')
# Et pour situer la place du "machine learning" dans l'IA :
#browse('https://fr.wikipedia.org/wiki/Intelligence_artificielle')