-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathannexe.py
83 lines (59 loc) · 1.83 KB
/
annexe.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
import matplotlib.pyplot as plt
import numpy as np
def lineaire(mode, matrice):
if mode == "derivee":
return np.zeros(matrice.shape) + 1
return matrice
def sigmoid(mode, matrice):
if mode == "derivee":
return sigmoid("", matrice) * (1 - sigmoid("", matrice))
return 1 / (1 + np.exp(-matrice))
def ReLu(mode, matrice):
if mode == "derivee":
return matrice > 0
return np.maximum(matrice, 0)
def tanh(mode, matrice):
if mode == "derivee":
return 1 - tanh("", matrice) ** 2
return np.tanh(matrice)
def softmax(mode, matrice):
e = np.exp(matrice - np.max(matrice))
return e / sum(e)
def ys_matriciels (y, nb_classe):
return np.array([[1 if i == j else 0 for i in range(nb_classe)] for j in y])
def comptage_resultats(y_pratiques, y_theoriques):
compteur = 0
for i in range(y_pratiques.size):
if y_pratiques[i] == y_theoriques[i]:
compteur += 1
return compteur
def cout(x, y):
return 0.5 * np.sum((x-y)**2)
def image(image):
plt.imshow(image, cmap='gray')
plt.show()
def image_resultat(image, valeurs, legendes):
maxi = np.argmax(valeurs)
couleurs = ["red" if i == maxi else "blue" for i in range(len(valeurs))]
plt.figure()
plt.subplot(211)
plt.imshow(image)
plt.subplot(212)
plt.bar(legendes, valeurs, color=couleurs)
plt.show()
def images_comparaison(image_originale, image_retouchee):
plt.figure()
plt.subplot(211)
plt.imshow(image_originale)
plt.subplot(212)
plt.imshow(image_retouchee)
plt.show()
def affichage(xs, ys, legendes, titre="", x_label="", y_label=""):
for i in range(len(ys)):
plt.plot(xs, ys[i], label=legendes[i])
plt.title(titre)
plt.xlabel(x_label)
plt.ylabel(y_label)
plt.legend()
plt.savefig("graphique.png")
plt.show()