All of this series is mainly based on the Machine Learning course given by Andrew Ng, which is hosted on cousera.org.
Neural Networks: RepresentationPermalink
Model Representation IPermalink
In neural networks, we use the same logistic function as in classification, 11+e−θTx, yet we sometimes call it a sigmoid (logistic) activation function. In this situation, our “theta” parameters are sometimes called “weights”.
Visually, a simplistic representation looks like:
[x0x1x2]→[]→hθ(x)Our input nodes (layer 1), also known as the “input layer”, go into another node (layer 2), which finally outputs the hypothesis function, known as the “output layer”.
We can have intermediate layers of nodes between the input and output layers called the “hidden layers.”
In this example, we label these intermediate or “hidden” layer nodes a20⋯a2n and call them “activation units.”
a(j)i= "activation" of unit i in layer jΘ(j)= matrix of weights controlling function mapping from layer j to layer j+1If we had one hidden layer, it would look like:
[x0x1x2x3]→[a(2)1a(2)2a(2)3]→hθ(x)The values for each of the “activation” nodes is obtained as follows:
a(2)1=g(Θ(1)10x0+Θ(1)11x1+Θ(1)12x2+Θ(1)13x3)a(2)2=g(Θ(1)20x0+Θ(1)21x1+Θ(1)22x2+Θ(1)23x3)a(2)3=g(Θ(1)30x0+Θ(1)31x1+Θ(1)32x2+Θ(1)33x3)hΘ(x)=a(3)1=g(Θ(2)10a(2)0+Θ(2)11a(2)1+Θ(2)12a(2)2+Θ(2)13a(2)3)This is saying that we compute our activation nodes by using a 3×4 matrix of parameters. We apply each row of the parameters to our inputs to obtain the value for one activation node. Our hypothesis output is the logistic function applied to the sum of the values of our activation nodes, which have been multiplied by yet another parameter matrix Θ(2) containing the weights for our second layer of nodes.
Each layer gets its own matrix of weights, Θ(j).
The dimensions of these matrices of weights is determined as follows:
If network has sj units in layer j and sj+1 units in layer j+1, then Θ(j) will be of dimension sj+1∗(sj+1).
The +1 comes from the addition in Θ(j) of the “bias nodes,” x0.
Model Representation IIPermalink
In this section we’ll do a vectorized implementation of the above functions. We’re going to define a new variable z(j)k that encompasses the parameters inside our g function. In our previous example if we replaced by the variable z for all the parameters we would get:
a(2)1=g(z(2)1) a(2)2=g(z(2)2) a(2)3=g(z(2)3)
In other words, for layer j=2 and node k, the variable z will be:
z(2)k=Θ(1)k,0x0+Θ(1)k,1x1+⋯+Θ(1)k,nxn
The vector representation of x and zj is:
x=[x0 x1 ⋯ xn]z(j)=[z(j)1 z(j)2 ⋯ z(j)n]
Setting x=a(1), we can rewrite the equation as:
z(j)=Θ(j−1)a(j−1)
Now we can get a vector of our activation nodes for layer j as follows:
a(j)=g(z(j))=g(Θ(j−1)a(j−1))
We can then add a bias unit (equal to 1) to layer j after we have computed a(j). This will be element a(j)0 and will be equal to 1. To compute our final hypothesis, let’s first compute another z vector:
z(j+1)=Θ(j)a(j)
This last theta matrix Θ(j) will have only one row which is multiplied by one column a(j) so that our result is a single number. We then get our final result with:
hΘ(x)=a(j+1)=g(z(j+1))
Notice that in this last step, between layer j and layer j+1, we are doing exactly the same thing as we did in logistic regression. Adding all these intermediate layers in neural networks allows us to more elegantly produce interesting and more complex non-linear hypotheses.
Examples and IntuitionsPermalink
The graph of our functions will look like:
[x0 x1 x2]→[g(z(2))]→hΘ(x)
Remember that x0 is our bias variable and is always 1.
Let’s set our first theta matrix as:
And
Θ(1)=[−30, 20, 20]
This will cause the output of our hypothesis to only be positive if both x1 and x2 are 1. In other words:
hΘ(x)=g(−30+20x1+20x2)x1=0 and x2=0 then g(−30)≈0x1=0 and x2=1 then g(−10)≈0x1=1 and x2=0 then g(−10)≈0x1=1 and x2=1 then g(10)≈1Or
Θ(1)=[−10, 20, 20]
Not X
Θ(1)=[10, -20]
Not X1 and Not X2
Θ(1)=[10, -20, -20]
Multiclass ClassificationPermalink
To classify data into multiple classes, we let our hypothesis function return a vector of values. Say we wanted to classify our data into one of four categories. We will use the following example to see how this classification is done. This algorithm takes as input an image and classifies it accordingly:
We can define our set of resulting classes as y:
y(i)=[1000],[0100],[0010],[0001]Each y(i) represents a different image corresponding to either a car, pedestrian, truck, or motorcycle. The inner layers, each provide us with some new information which leads to our final hypothesis function. The setup looks like:
[x0x1x2⋯xn]→[a(2)0a(2)1a(2)2⋯]→[a(3)0a(3)1a(3)2⋯]→⋯→[hΘ(x)1hΘ(x)2hΘ(x)3hΘ(x)4]Our resulting hypothesis for one set of inputs may look like:
hΘ(x)=[0 0 1 0]
In which case our resulting class is the third one down, or hΘ(x)3=1, which represents the motorcycle.
Neural Networks: LearningPermalink
Cost FunctionPermalink
Let’s first define a few variables that we will need to use:
- L = total number of layers in the network
- sl = number of units (not counting bias unit) in layer l
- K = number of output units/classes
Recall that in neural networks, we may have many output nodes. We denote hΘ(x)k as being a hypothesis that results in the kth output. Our cost function for neural networks is going to be a generalization of the one we used for logistic regression. Recall that the cost function for regularized logistic regression was:
J(θ)=−1m∑mi=1[y(i)log(hθ(x(i)))+(1−y(i))log(1−hθ(x(i)))]+λ2m∑nj=1θ2j
For neural networks, it is going to be slightly more complicated:
J(Θ)=−1mm∑i=1K∑k=1[y(i)klog((hΘ(x(i)))k)+(1−y(i)k)log(1−(hΘ(x(i)))k)]+λ2mL−1∑l=1sl∑i=1sl+1∑j=1(Θ(l)j,i)2Note:
-
For each layer, we do not regularize the Θj,0, just like we do not regularize the θ0 in the logistic regression.
-
Therefore, even though Θ(l) is a sj+1∗(sj+1) matrix, we do not regularize on the first column Θ(:,1).
Backpropagation AlgorithmPermalink
“Backpropagation” is neural-network terminology for minimizing our cost function, just like what we were doing with gradient descent in logistic and linear regression. Our goal is to compute:
minΘJ(Θ)
That is, we want to minimize our cost function J using an optimal set of parameters in theta. In this section we’ll look at the equations we use to compute the partial derivative of J(Θ):
∂∂Θ(l)i,jJ(Θ)To do so, we use the following algorithm:
Back propagation Algorithm:
Given training set
{(x(1),y(1))⋯(x(m),y(m))}- Set Δ(l)i,j=0 for all (l,i,j), (hence you end up having a matrix full of zeros)
For training example t =1 to m:
- Set a(1):=x(t)
- Perform forward propagation to compute a(l) for l=2,3,…,L
- Using y(t), compute δ(L)=a(L)−y(t)
Where L is our total number of layers and a(L) is the vector of outputs of the activation units for the last layer. So our “error values” for the last layer are simply the differences of our actual results in the last layer and the correct outputs in y. To get the delta values of the layers before the last layer, we can use an equation that steps us back from right to left:
- Compute δ(L−1),δ(L−2),…,δ(2) using δ(l)=((Θ(l))Tδ(l+1)).∗g′(z(l))
Since g′(z(l))=a(l)⋅∗(1−a(l))
δ(l)=((Θ(l))Tδ(l+1))⋅∗a(l)⋅∗(1−a(l))
-
Δ(l)i,j:=Δ(l)i,j+δ(l+1)ia(l)j or with vectorization, Δ(l):=Δ(l)+δ(l+1)(a(l))T
- Note, we need to remove the δ(l)0 for l<L for the calculation of Δ(l);
- This is because the Δ(l)i,j should have dimension of sl+1×sl+1
- But for l+1<L, δ(l+1) has dimension of sl+1+1. Therefore, we should delete this term.
Hence we update our new Δ matrix:
D(l)i,j:=1m∑all examples(Δ(l)i,j+λΘ(l)i,j), if j≠0D(l)i,j:=1m∑all examplesΔ(l)i,j , lf j=0The capital-delta matrix D is used as an “accumulator” to add up our values as we go along and eventually compute our partial derivative. Thus we get
∂∂Θ(l)i,jJ(Θ)=D(l)i,j.
Mathematical Intuition:Permalink
For L2 norm or linear regression problem: W∈Rm×n,x∈Rn,y∈Rn f(x,W)=|W⋅x|2=∑ni=1(W⋅x)2i, then we have:
∇Wf=2q⋅xT∇xf=2WT⋅qNote: the gradient w.r.t. any matrix/vector has the same shape with the matrix/vector.
For Logistic regression Problem: W∈Rm×n,x∈Rn,y∈Rn f(x,W)=−[(1−y)⋅log(1−Sigmoid(W⋅x))+y⋅log(Sigmoid(W⋅x))], then we have:
∇Wf=q⋅xT∇xf=WT⋅qW∈R1×n,x∈Rn×1,y∈R1 f(x,W)=W⋅x, then we have:
∇Wf=XT∇xf=WTJ(Θ)=J(ΘL−1;aL−1) ;Where aL−1=g(ΘL−2∗aL−2)
∂J∂ΘL−1 is just the like ∇Wf=q⋅xT:
∂J∂ΘL−1=δL∗(aL−1)TSimilar to the fact ∇xf=WT⋅q
∂J∂al−1=(ΘL−1)T(g(Xθ)−y)=(Θ(L−1))T∗δLAnd for previous ΘL−2, since aL−1=g(ΘL−2∗aL−1) is a function of ΘL−2, we can use the chain rule to derive the ∂J∂ΘL−2 as:
∂J∂ΘL−2=∂J∂aL−1∗∂aL−1∂ΘL−2=(ΘL−1)T∗δL∗g′(zL−1)∗(aL−2)T=δL−1∗(al−2)TIn other words:
∂J∂Θl=δ(l+1)∗(a(l))Tδ(l)=((Θ(l))Tδ(l+1))⋅∗a(l)⋅∗(1−a(l))Backpropagation IntuitionPermalink
In the image above, to calculate δ(2)2, we multiply the weights Θ(2)12 and
Θ(2)22by their respective δ values found to the right of each edge. So we get δ(2)2=Θ(2)12⋆δ(3)1+Θ(2)22⋆δ(3)2. To calculate every single possible δ(l)j, we could start from the right of our diagram. We can think of our edges as our Θij. Going from right to left, to calculate the value of δ(l)j, you can just take the over all sum of each weight times the δ it is coming from. Hence, another example would be δ(3)2=Θ(3)12δ(4)1
Z=Θ∗X
Since backwards, the true θ, i.e. previous θ, lies in X, the derivative will be like (Θ(l))T∗δ(l+1)
Backpropagation in PracticePermalink
With neural networks, we are working with sets of matrices:
Θ(1),Θ(2),Θ(3),…D(1),D(2),D(3),…In order to use optimizing functions such as “fminunc()”, we will want to “unroll” all the elements and put them into one long vector:
1
2
thetaVector = [ Theta1(:); Theta2(:); Theta3(:); ]
deltaVector = [ D1(:); D2(:); D3(:) ]
If the dimensions of Theta1 is 10x11, Theta2 is 10x11 and Theta3 is 1x11, then we can get back our original matrices from the “unrolled” versions as follows:
1
2
3
Theta1 = reshape(thetaVector(1:110),10,11)
Theta2 = reshape(thetaVector(111:220),10,11)
Theta3 = reshape(thetaVector(221:231),1,11)
To summarize:
- Use to vector form for the optimization algorithms
- Use the matrix form to utilize the vectorization implementation.
Gradient CheckingPermalink
Gradient checking will assure that our backpropagation works as intended. We can approximate the derivative of our cost function with:
∂∂ΘJ(Θ)≈J(Θ+ϵ)−J(Θ−ϵ)2ϵA small value for ϵ (epsilon) such as ϵ=10−4, guarantees that the math works out properly. If the value for ϵ is too small, we can end up with numerical problems.
Hence, we are only adding or subtracting epsilon to the Θj matrix. In octave we can do it as follows:
1
2
3
4
5
6
7
8
epsilon = 1e-4;
for i = 1:n,
thetaPlus = theta;
thetaPlus(i) += epsilon;
thetaMinus = theta;
thetaMinus(i) -= epsilon;
gradApprox(i) = (J(thetaPlus) - J(thetaMinus))/(2*epsilon)
end;
We previously saw how to calculate the deltaVector. So once we compute our gradApprox vector, we can check that gradApprox ≈ deltaVector.
Once you have verified once that your backpropagation algorithm is correct, you don’t need to compute gradApprox again. The code to compute gradApprox can be very slow.
Random InitializationPermalink
Initializing all theta weights to zero does not work with neural networks. When we backpropagate, all nodes will update to the same value repeatedly. Instead we can randomly initialize our weights for our Θ matrices using the following method:
Hence, we initialize each Θ(l)ij to a random value between[−ϵ,ϵ]. Using the above formula guarantees that we get the desired bound. The same procedure applies to all the Θ’s. Below is some working code you could use to experiment.
1
2
3
4
5
If the dimensions of Theta1 is 10x11, Theta2 is 10x11 and Theta3 is 1x11.
Theta1 = rand(10,11) * (2 * INIT_EPSILON) - INIT_EPSILON;
Theta2 = rand(10,11) * (2 * INIT_EPSILON) - INIT_EPSILON;
Theta3 = rand(1,11) * (2 * INIT_EPSILON) - INIT_EPSILON;
rand(x,y) is just a function in octave that will initialize a matrix of random real numbers between 0 and 1.
(Note: the epsilon used above is unrelated to the epsilon from Gradient Checking)
Putting it TogetherPermalink
First, pick a network architecture; choose the layout of your neural network, including how many hidden units in each layer and how many layers in total you want to have.
- Number of input units = dimension of features x(i)
- Number of output units = number of classes
- Number of hidden units per layer = usually more the better (must balance with cost of computation as it increases with more hidden units)
- Defaults: 1 hidden layer. If you have more than 1 hidden layer, then it is recommended that you have the same number of units in every hidden layer.
Training a Neural Network
- Randomly initialize the weights
- Implement forward propagation to get hΘ(x(i)) for any x(i)
- Implement the cost function
- Implement backpropagation to compute partial derivatives
- Use gradient checking to confirm that your backpropagation works. Then disable gradient checking.
- Use gradient descent or a built-in optimization function to minimize the cost function with the weights in theta.
When we perform forward and back propagation, we loop on every training example:
1
2
3
for i = 1:m,
Perform forward propagation and backpropagation using example (x(i),y(i))
(Get activations a(l) and delta terms d(l) for l = 2,...,L
CodesPermalink
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
function [J grad] = nnCostFunction(nn_params, ...
input_layer_size, ...
hidden_layer_size, ...
num_labels, ...
X, y, lambda)
%NNCOSTFUNCTION Implements the neural network cost function for a two layer
%neural network which performs classification
% [J grad] = NNCOSTFUNCTON(nn_params, hidden_layer_size, num_labels, ...
% X, y, lambda) computes the cost and gradient of the neural network. The
% parameters for the neural network are "unrolled" into the vector
% nn_params and need to be converted back into the weight matrices.
%
% The returned parameter grad should be a "unrolled" vector of the
% partial derivatives of the neural network.
%
% Reshape nn_params back into the parameters Theta1 and Theta2, the weight matrices
% for our 2 layer neural network
Theta1 = reshape(nn_params(1:hidden_layer_size * (input_layer_size + 1)), ...
hidden_layer_size, (input_layer_size + 1));
Theta2 = reshape(nn_params((1 + (hidden_layer_size * (input_layer_size + 1))):end), ...
num_labels, (hidden_layer_size + 1));
% Setup some useful variables
m = size(X, 1);
% You need to return the following variables correctly
J = 0;
Theta1_grad = zeros(size(Theta1));
Theta2_grad = zeros(size(Theta2));
% ====================== YOUR CODE HERE ======================
% Instructions: You should complete the code by working through the
% following parts.
%
% Part 1: Feedforward the neural network and return the cost in the
% variable J. After implementing Part 1, you can verify that your
% cost function computation is correct by verifying the cost
% computed in ex4.m
%
% Part 2: Implement the backpropagation algorithm to compute the gradients
% Theta1_grad and Theta2_grad. You should return the partial derivatives of
% the cost function with respect to Theta1 and Theta2 in Theta1_grad and
% Theta2_grad, respectively. After implementing Part 2, you can check
% that your implementation is correct by running checkNNGradients
%
% Note: The vector y passed into the function is a vector of labels
% containing values from 1..K. You need to map this vector into a
% binary vector of 1's and 0's to be used with the neural network
% cost function.
%
% Hint: We recommend implementing backpropagation using a for-loop
% over the training examples if you are implementing it for the
% first time.
%
% Part 3: Implement regularization with the cost function and gradients.
%
% Hint: You can implement this around the code for
% backpropagation. That is, you can compute the gradients for
% the regularization separately and then add them to Theta1_grad
% and Theta2_grad from Part 2.
%
for iter=1:m
a1=[1;X(iter,:)'];
yy=zeros(1,num_labels);
yy(y(iter))=1;
z2=Theta1*a1;
a2=[1;sigmoid(z2)];
z3=Theta2*a2;
a3=sigmoid(z3);
J=J-1/m*(yy*log(a3)+(1-yy)*log(1-a3));
delta3=a3-yy';
%fprintf('size of Theta2 is...[%d,%d] \n',size(Theta2))
%fprintf('size of delta3 is...[%d,%d] \n',size(delta3))
%fprintf('size of z2 is...[%d,%d] \n',size(z2))
delta2= Theta2'*delta3.*[1;sigmoidGradient(z2)];
% unless for delta Last one; other delta must delete first term;
delta2=delta2(2:end);
Theta2_grad = Theta2_grad + 1/m*delta3*a2';
Theta1_grad = Theta1_grad + 1/m*delta2*a1';
end
J=J+0.5*lambda/m*(sum(nn_params.^2)-sum(Theta1(:,1).^2)-sum(Theta2(:,1).^2));
theta11=Theta1;
theta11(:,1)=0;
theta22=Theta2;
theta22(:,1)=0;
Theta2_grad = Theta2_grad + lambda/m*theta22;
Theta1_grad = Theta1_grad + lambda/m*theta11;
grad = [Theta1_grad(:) ; Theta2_grad(:)];
end
Comments