chore: import upstream snapshot with attribution
@@ -0,0 +1,24 @@
|
||||
Sebastian Raschka, 2015
|
||||
|
||||
Python Machine Learning - Code Examples
|
||||
|
||||
## Chapter 12 - Training Artificial Neural Networks for Image
|
||||
|
||||
- Modeling complex functions with artificial neural networks
|
||||
- Single-layer neural network recap
|
||||
- Introducing the multi-layer neural network architecture
|
||||
- Activating a neural network via forward propagation
|
||||
- Classifying handwritten digits
|
||||
- Obtaining the MNIST dataset
|
||||
- Implementing a multi-layer perceptron
|
||||
- Training an artificial neural network
|
||||
- Computing the logistic cost function
|
||||
- Training neural networks via backpropagation
|
||||
- Developing your intuition for backpropagation
|
||||
- Debugging neural networks with gradient checking
|
||||
- Convergence in neural networks
|
||||
- Other neural network architectures
|
||||
- Convolutional Neural Networks
|
||||
- Recurrent Neural Networks
|
||||
- A few last words about neural network implementation
|
||||
- Summary
|
||||
|
After Width: | Height: | Size: 110 KiB |
|
After Width: | Height: | Size: 207 KiB |
|
After Width: | Height: | Size: 112 KiB |
|
After Width: | Height: | Size: 83 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 105 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 118 KiB |
|
After Width: | Height: | Size: 132 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 89 KiB |
@@ -0,0 +1,331 @@
|
||||
# Python Machine Learning by Sebastian Raschka, Packt Publishing Ltd. 2015
|
||||
# Code Repository: https://github.com/rasbt/python-machine-learning-book
|
||||
# Code License: MIT License
|
||||
|
||||
import numpy as np
|
||||
from scipy.special import expit
|
||||
import sys
|
||||
|
||||
|
||||
class NeuralNetMLP(object):
|
||||
""" Feedforward neural network / Multi-layer perceptron classifier.
|
||||
|
||||
Parameters
|
||||
------------
|
||||
n_output : int
|
||||
Number of output units, should be equal to the
|
||||
number of unique class labels.
|
||||
n_features : int
|
||||
Number of features (dimensions) in the target dataset.
|
||||
Should be equal to the number of columns in the X array.
|
||||
n_hidden : int (default: 30)
|
||||
Number of hidden units.
|
||||
l1 : float (default: 0.0)
|
||||
Lambda value for L1-regularization.
|
||||
No regularization if l1=0.0 (default)
|
||||
l2 : float (default: 0.0)
|
||||
Lambda value for L2-regularization.
|
||||
No regularization if l2=0.0 (default)
|
||||
epochs : int (default: 500)
|
||||
Number of passes over the training set.
|
||||
eta : float (default: 0.001)
|
||||
Learning rate.
|
||||
alpha : float (default: 0.0)
|
||||
Momentum constant. Factor multiplied with the
|
||||
gradient of the previous epoch t-1 to improve
|
||||
learning speed
|
||||
w(t) := w(t) - (grad(t) + alpha*grad(t-1))
|
||||
decrease_const : float (default: 0.0)
|
||||
Decrease constant. Shrinks the learning rate
|
||||
after each epoch via eta / (1 + epoch*decrease_const)
|
||||
shuffle : bool (default: True)
|
||||
Shuffles training data every epoch if True to prevent circles.
|
||||
minibatches : int (default: 1)
|
||||
Divides training data into k minibatches for efficiency.
|
||||
Normal gradient descent learning if k=1 (default).
|
||||
random_state : int (default: None)
|
||||
Set random state for shuffling and initializing the weights.
|
||||
|
||||
Attributes
|
||||
-----------
|
||||
cost_ : list
|
||||
Sum of squared errors after each epoch.
|
||||
|
||||
"""
|
||||
def __init__(self, n_output, n_features, n_hidden=30,
|
||||
l1=0.0, l2=0.0, epochs=500, eta=0.001,
|
||||
alpha=0.0, decrease_const=0.0, shuffle=True,
|
||||
minibatches=1, random_state=None):
|
||||
|
||||
np.random.seed(random_state)
|
||||
self.n_output = n_output
|
||||
self.n_features = n_features
|
||||
self.n_hidden = n_hidden
|
||||
self.w1, self.w2 = self._initialize_weights()
|
||||
self.l1 = l1
|
||||
self.l2 = l2
|
||||
self.epochs = epochs
|
||||
self.eta = eta
|
||||
self.alpha = alpha
|
||||
self.decrease_const = decrease_const
|
||||
self.shuffle = shuffle
|
||||
self.minibatches = minibatches
|
||||
|
||||
def _encode_labels(self, y, k):
|
||||
"""Encode labels into one-hot representation
|
||||
|
||||
Parameters
|
||||
------------
|
||||
y : array, shape = [n_samples]
|
||||
Target values.
|
||||
|
||||
Returns
|
||||
-----------
|
||||
onehot : array, shape = (n_labels, n_samples)
|
||||
|
||||
"""
|
||||
onehot = np.zeros((k, y.shape[0]))
|
||||
for idx, val in enumerate(y):
|
||||
onehot[val, idx] = 1.0
|
||||
return onehot
|
||||
|
||||
def _initialize_weights(self):
|
||||
"""Initialize weights with small random numbers."""
|
||||
w1 = np.random.uniform(-1.0, 1.0,
|
||||
size=self.n_hidden*(self.n_features + 1))
|
||||
w1 = w1.reshape(self.n_hidden, self.n_features + 1)
|
||||
w2 = np.random.uniform(-1.0, 1.0,
|
||||
size=self.n_output*(self.n_hidden + 1))
|
||||
w2 = w2.reshape(self.n_output, self.n_hidden + 1)
|
||||
return w1, w2
|
||||
|
||||
def _sigmoid(self, z):
|
||||
"""Compute logistic function (sigmoid)
|
||||
|
||||
Uses scipy.special.expit to avoid overflow
|
||||
error for very small input values z.
|
||||
|
||||
"""
|
||||
# return 1.0 / (1.0 + np.exp(-z))
|
||||
return expit(z)
|
||||
|
||||
def _sigmoid_gradient(self, z):
|
||||
"""Compute gradient of the logistic function"""
|
||||
sg = self._sigmoid(z)
|
||||
return sg * (1.0 - sg)
|
||||
|
||||
def _add_bias_unit(self, X, how='column'):
|
||||
"""Add bias unit (column or row of 1s) to array at index 0"""
|
||||
if how == 'column':
|
||||
X_new = np.ones((X.shape[0], X.shape[1] + 1))
|
||||
X_new[:, 1:] = X
|
||||
elif how == 'row':
|
||||
X_new = np.ones((X.shape[0] + 1, X.shape[1]))
|
||||
X_new[1:, :] = X
|
||||
else:
|
||||
raise AttributeError('`how` must be `column` or `row`')
|
||||
return X_new
|
||||
|
||||
def _feedforward(self, X, w1, w2):
|
||||
"""Compute feedforward step
|
||||
|
||||
Parameters
|
||||
-----------
|
||||
X : array, shape = [n_samples, n_features]
|
||||
Input layer with original features.
|
||||
w1 : array, shape = [n_hidden_units, n_features]
|
||||
Weight matrix for input layer -> hidden layer.
|
||||
w2 : array, shape = [n_output_units, n_hidden_units]
|
||||
Weight matrix for hidden layer -> output layer.
|
||||
|
||||
Returns
|
||||
----------
|
||||
a1 : array, shape = [n_samples, n_features+1]
|
||||
Input values with bias unit.
|
||||
z2 : array, shape = [n_hidden, n_samples]
|
||||
Net input of hidden layer.
|
||||
a2 : array, shape = [n_hidden+1, n_samples]
|
||||
Activation of hidden layer.
|
||||
z3 : array, shape = [n_output_units, n_samples]
|
||||
Net input of output layer.
|
||||
a3 : array, shape = [n_output_units, n_samples]
|
||||
Activation of output layer.
|
||||
|
||||
"""
|
||||
a1 = self._add_bias_unit(X, how='column')
|
||||
z2 = w1.dot(a1.T)
|
||||
a2 = self._sigmoid(z2)
|
||||
a2 = self._add_bias_unit(a2, how='row')
|
||||
z3 = w2.dot(a2)
|
||||
a3 = self._sigmoid(z3)
|
||||
return a1, z2, a2, z3, a3
|
||||
|
||||
def _L2_reg(self, lambda_, w1, w2):
|
||||
"""Compute L2-regularization cost"""
|
||||
return (lambda_/2.0) * (np.sum(w1[:, 1:] ** 2) +
|
||||
np.sum(w2[:, 1:] ** 2))
|
||||
|
||||
def _L1_reg(self, lambda_, w1, w2):
|
||||
"""Compute L1-regularization cost"""
|
||||
return (lambda_/2.0) * (np.abs(w1[:, 1:]).sum() +
|
||||
np.abs(w2[:, 1:]).sum())
|
||||
|
||||
def _get_cost(self, y_enc, output, w1, w2):
|
||||
"""Compute cost function.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
y_enc : array, shape = (n_labels, n_samples)
|
||||
one-hot encoded class labels.
|
||||
output : array, shape = [n_output_units, n_samples]
|
||||
Activation of the output layer (feedforward)
|
||||
w1 : array, shape = [n_hidden_units, n_features]
|
||||
Weight matrix for input layer -> hidden layer.
|
||||
w2 : array, shape = [n_output_units, n_hidden_units]
|
||||
Weight matrix for hidden layer -> output layer.
|
||||
|
||||
Returns
|
||||
---------
|
||||
cost : float
|
||||
Regularized cost.
|
||||
|
||||
"""
|
||||
term1 = -y_enc * (np.log(output))
|
||||
term2 = (1.0 - y_enc) * np.log(1.0 - output)
|
||||
cost = np.sum(term1 - term2)
|
||||
L1_term = self._L1_reg(self.l1, w1, w2)
|
||||
L2_term = self._L2_reg(self.l2, w1, w2)
|
||||
cost = cost + L1_term + L2_term
|
||||
return cost
|
||||
|
||||
def _get_gradient(self, a1, a2, a3, z2, y_enc, w1, w2):
|
||||
""" Compute gradient step using backpropagation.
|
||||
|
||||
Parameters
|
||||
------------
|
||||
a1 : array, shape = [n_samples, n_features+1]
|
||||
Input values with bias unit.
|
||||
a2 : array, shape = [n_hidden+1, n_samples]
|
||||
Activation of hidden layer.
|
||||
a3 : array, shape = [n_output_units, n_samples]
|
||||
Activation of output layer.
|
||||
z2 : array, shape = [n_hidden, n_samples]
|
||||
Net input of hidden layer.
|
||||
y_enc : array, shape = (n_labels, n_samples)
|
||||
one-hot encoded class labels.
|
||||
w1 : array, shape = [n_hidden_units, n_features]
|
||||
Weight matrix for input layer -> hidden layer.
|
||||
w2 : array, shape = [n_output_units, n_hidden_units]
|
||||
Weight matrix for hidden layer -> output layer.
|
||||
|
||||
Returns
|
||||
---------
|
||||
grad1 : array, shape = [n_hidden_units, n_features]
|
||||
Gradient of the weight matrix w1.
|
||||
grad2 : array, shape = [n_output_units, n_hidden_units]
|
||||
Gradient of the weight matrix w2.
|
||||
|
||||
"""
|
||||
# backpropagation
|
||||
sigma3 = a3 - y_enc
|
||||
z2 = self._add_bias_unit(z2, how='row')
|
||||
sigma2 = w2.T.dot(sigma3) * self._sigmoid_gradient(z2)
|
||||
sigma2 = sigma2[1:, :]
|
||||
grad1 = sigma2.dot(a1)
|
||||
grad2 = sigma3.dot(a2.T)
|
||||
|
||||
# regularize
|
||||
grad1[:, 1:] += self.l2 * w1[:, 1:]
|
||||
grad1[:, 1:] += self.l1 * np.sign(w1[:, 1:])
|
||||
grad2[:, 1:] += self.l2 * w2[:, 1:]
|
||||
grad2[:, 1:] += self.l1 * np.sign(w2[:, 1:])
|
||||
|
||||
return grad1, grad2
|
||||
|
||||
def predict(self, X):
|
||||
"""Predict class labels
|
||||
|
||||
Parameters
|
||||
-----------
|
||||
X : array, shape = [n_samples, n_features]
|
||||
Input layer with original features.
|
||||
|
||||
Returns:
|
||||
----------
|
||||
y_pred : array, shape = [n_samples]
|
||||
Predicted class labels.
|
||||
|
||||
"""
|
||||
if len(X.shape) != 2:
|
||||
raise AttributeError('X must be a [n_samples, n_features] array.\n'
|
||||
'Use X[:,None] for 1-feature classification,'
|
||||
'\nor X[[i]] for 1-sample classification')
|
||||
|
||||
a1, z2, a2, z3, a3 = self._feedforward(X, self.w1, self.w2)
|
||||
y_pred = np.argmax(z3, axis=0)
|
||||
return y_pred
|
||||
|
||||
def fit(self, X, y, print_progress=False):
|
||||
""" Learn weights from training data.
|
||||
|
||||
Parameters
|
||||
-----------
|
||||
X : array, shape = [n_samples, n_features]
|
||||
Input layer with original features.
|
||||
y : array, shape = [n_samples]
|
||||
Target class labels.
|
||||
print_progress : bool (default: False)
|
||||
Prints progress as the number of epochs
|
||||
to stderr.
|
||||
|
||||
Returns:
|
||||
----------
|
||||
self
|
||||
|
||||
"""
|
||||
self.cost_ = []
|
||||
X_data, y_data = X.copy(), y.copy()
|
||||
y_enc = self._encode_labels(y, self.n_output)
|
||||
|
||||
delta_w1_prev = np.zeros(self.w1.shape)
|
||||
delta_w2_prev = np.zeros(self.w2.shape)
|
||||
|
||||
for i in range(self.epochs):
|
||||
|
||||
# adaptive learning rate
|
||||
self.eta /= (1 + self.decrease_const*i)
|
||||
|
||||
if print_progress:
|
||||
sys.stderr.write('\rEpoch: %d/%d' % (i+1, self.epochs))
|
||||
sys.stderr.flush()
|
||||
|
||||
if self.shuffle:
|
||||
idx = np.random.permutation(y_data.shape[0])
|
||||
X_data, y_enc = X_data[idx], y_enc[:, idx]
|
||||
|
||||
mini = np.array_split(range(y_data.shape[0]), self.minibatches)
|
||||
for idx in mini:
|
||||
|
||||
# feedforward
|
||||
a1, z2, a2, z3, a3 = self._feedforward(X_data[idx],
|
||||
self.w1,
|
||||
self.w2)
|
||||
cost = self._get_cost(y_enc=y_enc[:, idx],
|
||||
output=a3,
|
||||
w1=self.w1,
|
||||
w2=self.w2)
|
||||
self.cost_.append(cost)
|
||||
|
||||
# compute gradient via backpropagation
|
||||
grad1, grad2 = self._get_gradient(a1=a1, a2=a2,
|
||||
a3=a3, z2=z2,
|
||||
y_enc=y_enc[:, idx],
|
||||
w1=self.w1,
|
||||
w2=self.w2)
|
||||
|
||||
delta_w1, delta_w2 = self.eta * grad1, self.eta * grad2
|
||||
self.w1 -= (delta_w1 + (self.alpha * delta_w1_prev))
|
||||
self.w2 -= (delta_w2 + (self.alpha * delta_w2_prev))
|
||||
delta_w1_prev, delta_w2_prev = delta_w1, delta_w2
|
||||
|
||||
return self
|
||||
@@ -0,0 +1,256 @@
|
||||
# Python Machine Learning by Sebastian Raschka, Packt Publishing Ltd. 2015
|
||||
# Code Repository: https://github.com/rasbt/python-machine-learning-book
|
||||
# Code License: MIT License
|
||||
|
||||
import numpy as np
|
||||
import sys
|
||||
|
||||
|
||||
class NeuralNetMLP(object):
|
||||
""" Feedforward neural network / Multi-layer perceptron classifier.
|
||||
|
||||
Parameters
|
||||
------------
|
||||
n_hidden : int (default: 30)
|
||||
Number of hidden units.
|
||||
l2 : float (default: 0.)
|
||||
Lambda value for L2-regularization.
|
||||
No regularization if l2=0. (default)
|
||||
epochs : int (default: 100)
|
||||
Number of passes over the training set.
|
||||
eta : float (default: 0.001)
|
||||
Learning rate.
|
||||
shuffle : bool (default: True)
|
||||
Shuffles training data every epoch if True to prevent circles.
|
||||
minibatche_size : int (default: 1)
|
||||
Number of training samples per minibatch.
|
||||
seed : int (default: None)
|
||||
Random seed for initializing weights and shuffling.
|
||||
|
||||
Attributes
|
||||
-----------
|
||||
eval_ : dict
|
||||
Dictionary collecting the cost, training accuracy,
|
||||
and validation accuracy for each epoch during training.
|
||||
|
||||
"""
|
||||
def __init__(self, n_hidden=30,
|
||||
l2=0., epochs=100, eta=0.001,
|
||||
shuffle=True, minibatch_size=1, seed=None):
|
||||
|
||||
self.random = np.random.RandomState(seed)
|
||||
self.n_hidden = n_hidden
|
||||
self.l2 = l2
|
||||
self.epochs = epochs
|
||||
self.eta = eta
|
||||
self.shuffle = shuffle
|
||||
self.minibatch_size = minibatch_size
|
||||
|
||||
def _onehot(self, y, n_classes):
|
||||
"""Encode labels into one-hot representation
|
||||
|
||||
Parameters
|
||||
------------
|
||||
y : array, shape = [n_samples]
|
||||
Target values.
|
||||
|
||||
Returns
|
||||
-----------
|
||||
onehot : array, shape = (n_samples, n_labels)
|
||||
|
||||
"""
|
||||
onehot = np.zeros((n_classes, y.shape[0].astype(int)))
|
||||
for idx, val in enumerate(y):
|
||||
onehot[val, idx] = 1.
|
||||
return onehot.T
|
||||
|
||||
def _sigmoid(self, z):
|
||||
"""Compute logistic function (sigmoid)"""
|
||||
return 1. / (1. + np.exp(-np.clip(z, -250, 250)))
|
||||
|
||||
def _forward(self, X):
|
||||
"""Compute forward propagation step"""
|
||||
|
||||
# step 1: net input of hidden layer
|
||||
# [n_samples, n_features] dot [n_features, n_hidden]
|
||||
# -> [n_samples, n_hidden]
|
||||
z_h = np.dot(X, self.w_h) + self.b_h
|
||||
|
||||
# step 2: activation of hidden layer
|
||||
a_h = self._sigmoid(z_h)
|
||||
|
||||
# step 3: net input of output layer
|
||||
# [n_samples, n_hidden] dot [n_hidden, n_classlabels]
|
||||
# -> [n_samples, n_classlabels]
|
||||
|
||||
z_out = np.dot(a_h, self.w_out) + self.b_out
|
||||
|
||||
# step 4: activation output layer
|
||||
a_out = self._sigmoid(z_out)
|
||||
|
||||
return z_h, a_h, z_out, a_out
|
||||
|
||||
def _compute_cost(self, y_enc, output):
|
||||
"""Compute cost function.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
y_enc : array, shape = (n_samples, n_labels)
|
||||
one-hot encoded class labels.
|
||||
output : array, shape = [n_samples, n_output_units]
|
||||
Activation of the output layer (forward propagation)
|
||||
|
||||
Returns
|
||||
---------
|
||||
cost : float
|
||||
Regularized cost
|
||||
|
||||
"""
|
||||
L2_term = (self.l2 *
|
||||
(np.sum(self.w_h ** 2.) +
|
||||
np.sum(self.w_out ** 2.)))
|
||||
|
||||
term1 = -y_enc * (np.log(output))
|
||||
term2 = (1. - y_enc) * np.log(1. - output)
|
||||
cost = np.sum(term1 - term2) + L2_term
|
||||
return cost
|
||||
|
||||
def predict(self, X):
|
||||
"""Predict class labels
|
||||
|
||||
Parameters
|
||||
-----------
|
||||
X : array, shape = [n_samples, n_features]
|
||||
Input layer with original features.
|
||||
|
||||
Returns:
|
||||
----------
|
||||
y_pred : array, shape = [n_samples]
|
||||
Predicted class labels.
|
||||
|
||||
"""
|
||||
z_h, a_h, z_out, a_out = self._forward(X)
|
||||
y_pred = np.argmax(z_out, axis=1)
|
||||
return y_pred
|
||||
|
||||
def fit(self, X_train, y_train, X_valid, y_valid):
|
||||
""" Learn weights from training data.
|
||||
|
||||
Parameters
|
||||
-----------
|
||||
X_train : array, shape = [n_samples, n_features]
|
||||
Input layer with original features.
|
||||
y_train : array, shape = [n_samples]
|
||||
Target class labels.
|
||||
X_valid : array, shape = [n_samples, n_features]
|
||||
Sample features for validation during training
|
||||
y_valid : array, shape = [n_samples]
|
||||
Sample labels for validation during training
|
||||
|
||||
Returns:
|
||||
----------
|
||||
self
|
||||
|
||||
"""
|
||||
n_output = np.unique(y_train).shape[0] # number of class labels
|
||||
n_features = X_train.shape[1]
|
||||
|
||||
########################
|
||||
# Weight initialization
|
||||
########################
|
||||
|
||||
# weights for input -> hidden
|
||||
self.b_h = np.zeros(self.n_hidden)
|
||||
self.w_h = self.random.normal(loc=0.0, scale=0.1,
|
||||
size=(n_features, self.n_hidden))
|
||||
|
||||
# weights for hidden -> output
|
||||
self.b_out = np.zeros(n_output)
|
||||
self.w_out = self.random.normal(loc=0.0, scale=0.1,
|
||||
size=(self.n_hidden, n_output))
|
||||
|
||||
epoch_strlen = len(str(self.epochs)) # for progress formatting
|
||||
self.eval_ = {'cost': [], 'train_acc': [], 'valid_acc': []}
|
||||
|
||||
y_train_enc = self._onehot(y_train, n_output)
|
||||
|
||||
# iterate over training epochs
|
||||
for i in range(self.epochs):
|
||||
|
||||
# iterate over minibatches
|
||||
indices = np.arange(X_train.shape[0])
|
||||
|
||||
if self.shuffle:
|
||||
self.random.shuffle(indices)
|
||||
|
||||
for start_idx in range(0, indices.shape[0] - self.minibatch_size +
|
||||
1, self.minibatch_size):
|
||||
batch_idx = indices[start_idx:start_idx + self.minibatch_size]
|
||||
|
||||
# forward propagation
|
||||
z_h, a_h, z_out, a_out = self._forward(X_train[batch_idx])
|
||||
|
||||
##################
|
||||
# Backpropagation
|
||||
##################
|
||||
|
||||
# [n_samples, n_classlabels]
|
||||
sigma_out = a_out - y_train_enc[batch_idx]
|
||||
|
||||
# [n_samples, n_hidden]
|
||||
sigmoid_derivative_h = a_h * (1. - a_h)
|
||||
|
||||
# [n_samples, n_classlabels] dot [n_classlabels, n_hidden]
|
||||
# -> [n_samples, n_hidden]
|
||||
sigma_h = (np.dot(sigma_out, self.w_out.T) *
|
||||
sigmoid_derivative_h)
|
||||
|
||||
# [n_features, n_samples] dot [n_samples, n_hidden]
|
||||
# -> [n_features, n_hidden]
|
||||
grad_w_h = np.dot(X_train[batch_idx].T, sigma_h)
|
||||
grad_b_h = np.sum(sigma_h, axis=0)
|
||||
|
||||
# [n_hidden, n_samples] dot [n_samples, n_classlabels]
|
||||
# -> [n_hidden, n_classlabels]
|
||||
grad_w_out = np.dot(a_h.T, sigma_out)
|
||||
grad_b_out = np.sum(sigma_out, axis=0)
|
||||
|
||||
# Regularization and weight updates
|
||||
delta_w_h = (grad_w_h + self.l2*self.w_h)
|
||||
delta_b_h = grad_b_h # bias is not regularized
|
||||
self.w_h -= self.eta * delta_w_h
|
||||
self.b_h -= self.eta * delta_b_h
|
||||
|
||||
delta_w_out = (grad_w_out + self.l2*self.w_out)
|
||||
delta_b_out = grad_b_out # bias is not regularized
|
||||
self.w_out -= self.eta * delta_w_out
|
||||
self.b_out -= self.eta * delta_b_out
|
||||
|
||||
#############
|
||||
# Evaluation
|
||||
#############
|
||||
|
||||
# Evaluation after each epoch during training
|
||||
z_h, a_h, z_out, a_out = self._forward(X_train)
|
||||
cost = self._compute_cost(y_enc=y_train_enc,
|
||||
output=a_out)
|
||||
|
||||
y_train_pred = self.predict(X_train)
|
||||
y_valid_pred = self.predict(X_valid)
|
||||
|
||||
train_acc = ((np.sum(y_train == y_train_pred)).astype(np.float) /
|
||||
X_train.shape[0])
|
||||
valid_acc = ((np.sum(y_valid == y_valid_pred)).astype(np.float) /
|
||||
X_valid.shape[0])
|
||||
|
||||
sys.stderr.write('\r%0*d/%d | Cost: %.2f '
|
||||
'| Train/Valid Acc.: %.2f%%/%.2f%% ' %
|
||||
(epoch_strlen, i+1, self.epochs, cost,
|
||||
train_acc*100, valid_acc*100))
|
||||
sys.stderr.flush()
|
||||
|
||||
self.eval_['cost'].append(cost)
|
||||
self.eval_['train_acc'].append(train_acc)
|
||||
self.eval_['valid_acc'].append(valid_acc)
|
||||
|
||||
return self
|
||||