mirror of
https://forge.apps.education.fr/phroy/mes-scripts-de-ml.git
synced 2024-01-27 11:30:36 +01:00
Ajout du perceptron multi-couches
This commit is contained in:
parent
f2f83d7580
commit
ff0b9052c5
@ -122,9 +122,6 @@ def tanh(_x):
|
||||
def derivation(f, _x, eps=0.000001):
|
||||
return (f(_x + eps) - f(_x))/eps
|
||||
|
||||
def derivation(f, _x, eps=0.000001):
|
||||
return (f(_x + eps) - f(_x))/eps
|
||||
|
||||
# Fonctions d'activation
|
||||
f_activ_ax = fig.add_subplot(2,4,2)
|
||||
f_activ_ax.set_title("Fonctions d'activation")
|
||||
|
Loading…
x
Reference in New Issue
Block a user