Cet article est un mémo d'apprentissage de Deep Learning from scratch.
h(x) = \frac{1}{1+ \mathrm{e}^{-x}}
a = w_1x_1+w_2x_2+b
z = h(a)
py3:3layered_neuralnetwork.py.py
import numpy as np
import matplotlib.pyplot as plt
#Initialisation du poids et du biais
def init_network():
network = {}
#1ère couche
network['W1'] = np.array([[0.1, 0.3, 0.5], [0.2, 0.4, 0.6]])
network['b1'] = np.array([0.1, 0.2, 0.3])
#2ème couche
network['W2'] = np.array([[0.1, 0.4], [0.2, 0.5], [0.3, 0.6]])
network['b2'] = np.array([0.1, 0.2])
#3e couche
network['W3'] = np.array([[0.1, 0.3], [0.2, 0.4]])
network['b3'] = np.array([0.1, 0.2])
return network
#Entrée → sortie
def forward(network, x):
W1, W2, W3 = network['W1'], network['W2'], network['W3']
b1, b2, b3 = network['b1'], network['b2'], network['b3']
#1ère couche
a1 = np.dot(x, W1) +b1 # A = XW +B
z1 = sigmoid(a1) # Z = h(A)
#2ème couche
a2 = np.dot(z1, W2) +b2
z2 = sigmoid(a2)
#3e couche
a3 = np.dot(z2, W3) +b3
y = identity_function(a3) #Seule la dernière couche a une fonction d'activation différente
return y
#Fonction Sigmaid(Fonction d'activation)
def sigmoid(x):
return 1 / (1 + np.exp(-x))
#Fonction égale(Fonction d'activation)
def identity_function(x):
return x
#Vérifiez le fonctionnement ci-dessous
network = init_network()
x = np.array([1.0, 0.5])
y = forward(network, x)
print(y) # [0.31682708 0.69627909]
Recommended Posts