码迷,mamicode.com
首页 > Web开发 > 详细

【转帖】Andrew ng 【Sparse Autoencoder 】@UFLDL Tutorial

时间:2014-12-17 22:18:07      阅读:969      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   ar   io   os   sp   for   

Neural Networks

From Ufldl

 
Jump to: navigation, search

Consider a supervised learning problem where we have access to labeled training examples (x(i),y(i)).  Neural networks give a way of defining a complex, non-linear form of hypotheses hW,b(x), with parameters W,b that we can fit to our data.

To describe neural networks, we will begin by describing the simplest possible neural network, one which comprises a single "neuron."  We will use the following diagram to denote a single neuron:

bubuko.com,布布扣

This "neuron" is a computational unit that takes as input x1,x2,x3 (and a +1 intercept term), and outputs bubuko.com,布布扣, where bubuko.com,布布扣 is called the activation function.  In these notes, we will choose bubuko.com,布布扣 to be the sigmoid function:

bubuko.com,布布扣

Thus, our single neuron corresponds exactly to the input-output mapping defined by logistic regression.

Although these notes will use the sigmoid function, it is worth noting that another common choice for f is the hyperbolic tangent, or tanh, function:

bubuko.com,布布扣

Here are plots of the sigmoid and tanh functions:

 

bubuko.com,布布扣 bubuko.com,布布扣

The tanh(z) function is a rescaled version of the sigmoid, and its output range is [ − 1,1] instead of [0,1].

Note that unlike some other venues (including the OpenClassroom videos, and parts of CS229),  we are not using the convention here of x0 = 1.  Instead, the intercept term is handled separately by the parameter b.

Finally, one identity that‘ll be useful later: If f(z) = 1 / (1 + exp( − z)) is the sigmoid function, then its derivative is given by f‘(z) = f(z)(1 − f(z)). (If f is the tanh function, then its derivative is given by f‘(z) = 1 − (f(z))2.)  You can derive this yourself using the definition of the sigmoid (or tanh) function.

 

Neural Network model

A neural network is put together by hooking together many of our simple "neurons," so that the output of a neuron can be the input of another.  For example, here is a small neural network:

bubuko.com,布布扣

In this figure, we have used circles to also denote the inputs to the network.  The circles labeled "+1" are called bias units, and correspond to the intercept term. The leftmost layer of the network is called the input layer, and the rightmost layer the output layer (which, in this example, has only one node).  The middle layer of nodes is called the hidden layer, because its values are not observed in the training set.  We also say that our example neural network has 3 input units (not counting the bias unit), 3  hidden units, and 1 output unit.

We will let nl denote the number of layers in our network; thus nl = 3 in our example.  We label layer l as Ll, so layer L1 is the input layer, and layer bubuko.com,布布扣 the output layer. Our neural network has parameters (W,b) = (W(1),b(1),W(2),b(2)), where we write bubuko.com,布布扣 to denote the parameter (or weight) associated with the connection between unit j in layer l, and unit i in layer l + 1.  (Note the order of the indices.) Also, bubuko.com,布布扣 is the bias associated with unit i in layer l + 1. Thus, in our example, we have bubuko.com,布布扣, and bubuko.com,布布扣. Note that bias units don‘t have inputs or connections going into them, since they always output the value +1.  We also let sl denote the number of nodes in layer l (not counting the bias unit).

We will write bubuko.com,布布扣 to denote the activation (meaning output value) of unit i in layer l.  For l = 1, we also use bubuko.com,布布扣 to denote the i-th input. Given a fixed setting of the parameters W,b, our neural network defines a hypothesis hW,b(x) that outputs a real number.  Specifically, the computation that this neural network represents is given by:

bubuko.com,布布扣

In the sequel, we also let bubuko.com,布布扣 denote the total weighted sum of inputs to unit i in layer l, including the bias term (e.g., bubuko.com,布布扣), so that bubuko.com,布布扣.

Note that this easily lends itself to a more compact notation.  Specifically, if we extend the activation function bubuko.com,布布扣 to apply to vectors in an element-wise fashion (i.e., f([z1,z2,z3]) = [f(z1),f(z2),f(z3)]), then we can write the equations above more compactly as:

bubuko.com,布布扣

We call this step forward propagation.  More generally, recalling that we also use a(1) = x to also denote the values from the input layer, then given layer l‘s activations a(l), we can compute layer l + 1‘s activations a(l + 1) as:

bubuko.com,布布扣

By organizing our parameters in matrices and using matrix-vector operations, we can take advantage of fast linear algebra routines to quickly perform calculations in our network.

We have so far focused on one example neural network, but one can also build neural networks with other architectures (meaning patterns of connectivity between neurons), including ones with multiple hidden layers. The most common choice is a bubuko.com,布布扣-layered network where layer bubuko.com,布布扣 is the input layer, layer bubuko.com,布布扣 is the output layer, and each layer bubuko.com,布布扣 is densely connected to layer bubuko.com,布布扣.  In this setting, to compute the output of the network, we can successively compute all the activations in layer bubuko.com,布布扣, then layer bubuko.com,布布扣, and so on, up to layer bubuko.com,布布扣, using the equations above that describe the forward propagation step.  This is one example of a feedforward neural network, since the connectivity graph does not have any directed loops or cycles.

Neural networks can also have multiple output units.  For example, here is a network with two hidden layers layers L2 and L3 and two output units in layer L4:

bubuko.com,布布扣

To train this network, we would need training examples (x(i),y(i)) where bubuko.com,布布扣.  This sort of network is useful if there‘re multiple outputs that you‘re interested in predicting.  (For example, in a medical diagnosis application, the vector x might give the input features of a patient, and the different outputs yi‘s might indicate presence or absence of different diseases.)

 

 

Backpropagation Algorithm

From Ufldl

 
Jump to: navigation, search

Suppose we have a fixed training set bubuko.com,布布扣 of m training examples. We can train our neural network using batch gradient descent.  In detail, for a single training example (x,y), we define the cost function with respect to that single example to be:

bubuko.com,布布扣

This is a (one-half) squared-error cost function. Given a training set of m examples, we then define the overall cost function to be: 

bubuko.com,布布扣

The first term in the definition of J(W,b) is an average sum-of-squares error term. The second term is a regularization term (also called a weight decay term) that tends to decrease the magnitude of the weights, and helps prevent overfitting.

[Note: Usually weight decay is not applied to the bias terms bubuko.com,布布扣, as reflected in our definition for J(W,b).  Applying weight decay to the bias units usually makes only a small difference to the final network, however.  If you‘ve taken CS229 (Machine Learning) at Stanford or watched the course‘s videos on YouTube, you may also recognize this weight decay as essentially a variant of the Bayesian regularization method you saw there, where we placed a Gaussian prior on the parameters and did MAP (instead of maximum likelihood) estimation.]

The weight decay parameter λ controls the relative importance of the two terms. Note also the slightly overloaded notation: J(W,b;x,y) is the squared error cost with respect to a single example; J(W,b) is the overall cost function, which includes the weight decay term.

This cost function above is often used both for classification and for regression problems. For classification, we let y = 0 or 1 represent the two class labels (recall that the sigmoid activation function outputs values in [0,1]; if we were using a tanh activation function, we would instead use -1 and +1 to denote the labels).  For regression problems, we first scale our outputs to ensure that they lie in the [0,1] range (or if we were using a tanh activation function, then the [ − 1,1] range).

Our goal is to minimize J(W,b) as a function of W and b. To train our neural network, we will initialize each parameter bubuko.com,布布扣 and each bubuko.com,布布扣 to a small random value near zero (say according to a Normal(0,ε2) distribution for some small ε, say 0.01), and then apply an optimization algorithm such as batch gradient descent. Since J(W,b) is a non-convex function, gradient descent is susceptible to local optima; however, in practice gradient descent usually works fairly well. Finally, note that it is important to initialize the parameters randomly, rather than to all 0‘s.  If all the parameters start off at identical values, then all the hidden layer units will end up learning the same function of the input (more formally, bubuko.com,布布扣 will be the same for all values of i, so that bubuko.com,布布扣 for any input x). The random initialization serves the purpose of symmetry breaking.

One iteration of gradient descent updates the parameters W,b as follows:

bubuko.com,布布扣

where α is the learning rate.  The key step is computing the partial derivatives above. We will now describe the backpropagation algorithm, which gives an efficient way to compute these partial derivatives.

We will first describe how backpropagation can be used to compute bubuko.com,布布扣 and bubuko.com,布布扣, the partial derivatives of the cost function J(W,b;x,y) defined with respect to a single example (x,y). Once we can compute these, we see that the derivative of the overall cost function J(W,b) can be computed as:

bubuko.com,布布扣

The two lines above differ slightly because weight decay is applied to W but not b.

The intuition behind the backpropagation algorithm is as follows. Given a training example (x,y), we will first run a "forward pass" to compute all the activations throughout the network, including the output value of the hypothesis hW,b(x).  Then, for each node i in layer l, we would like to compute an "error term" bubuko.com,布布扣 that measures how much that node was "responsible" for any errors in our output. For an output node, we can directly measure the difference between the network‘s activation and the true target value, and use that to define bubuko.com,布布扣 (where layer nl is the output layer).  How about hidden units?  For those, we will compute bubuko.com,布布扣 based on a weighted average of the error terms of the nodes that uses bubuko.com,布布扣 as an input.  In detail, here is the backpropagation algorithm:

  1. Perform a feedforward pass, computing the activations for layers L2, L3, and so on up to the output layer bubuko.com,布布扣.
  2. For each output unit i in layer nl (the output layer), set
    bubuko.com,布布扣
  3. For bubuko.com,布布扣
    For each node i in layer l, set
    bubuko.com,布布扣
  4. Compute the desired partial derivatives, which are given as: 
    bubuko.com,布布扣

Finally, we can also re-write the algorithm using matrix-vectorial notation. We will use "bubuko.com,布布扣" to denote the element-wise product operator (denoted ".*" in Matlab or Octave, and also called the Hadamard product), so that if bubuko.com,布布扣, then bubuko.com,布布扣. Similar to how we extended the definition of bubuko.com,布布扣 to apply element-wise to vectors, we also do the same for bubuko.com,布布扣 (so that bubuko.com,布布扣).

The algorithm can then be written:

  1. Perform a feedforward pass, computing the activations for layers bubuko.com,布布扣, bubuko.com,布布扣, up to the output layer bubuko.com,布布扣, using the equations defining the forward propagation steps
  2. For the output layer (layer bubuko.com,布布扣), set 
    bubuko.com,布布扣
  3. For bubuko.com,布布扣
    Set
    bubuko.com,布布扣
  4. Compute the desired partial derivatives: 
    bubuko.com,布布扣

Implementation note: In steps 2 and 3 above, we need to compute bubuko.com,布布扣 for each value of bubuko.com,布布扣. Assuming bubuko.com,布布扣 is the sigmoid activation function, we would already have bubuko.com,布布扣 stored away from the forward pass through the network.  Thus, using the expression that we worked out earlier for bubuko.com,布布扣,  we can compute this as bubuko.com,布布扣.   

Finally, we are ready to describe the full gradient descent algorithm.  In the pseudo-code below, bubuko.com,布布扣 is a matrix (of the same dimension as bubuko.com,布布扣), and bubuko.com,布布扣 is a vector (of the same dimension as bubuko.com,布布扣). Note that in this notation,  "bubuko.com,布布扣" is a matrix, and in particular it isn‘t "bubuko.com,布布扣 times bubuko.com,布布扣." We implement one iteration of batch gradient descent as follows:

  1. Set bubuko.com,布布扣, bubuko.com,布布扣 (matrix/vector of zeros) for all bubuko.com,布布扣.
  2. For bubuko.com,布布扣 to bubuko.com,布布扣
    1. Use backpropagation to compute bubuko.com,布布扣 and  bubuko.com,布布扣.
    2. Set bubuko.com,布布扣
    3. Set bubuko.com,布布扣
  3. Update the parameters:
    bubuko.com,布布扣

To train our neural network, we can now repeatedly take steps of gradient descent to reduce our cost function bubuko.com,布布扣.

 

 

Gradient checking and advanced optimization

From Ufldl

 
Jump to: navigation, search

Backpropagation is a notoriously difficult algorithm to debug and get right, especially since many subtly buggy implementations of it—for example, one that has an off-by-one error in the indices and that thus only trains some of the layers of weights, or an implementation that omits the bias term—will manage to learn something that can look surprisingly reasonable (while performing less well than a correct implementation).  Thus, even with a buggy implementation, it may not at all be apparent that anything is amiss. In this section, we describe a method for numerically checking the derivatives computed by your code to make sure that your implementation is correct.  Carrying out the derivative checking procedure described here will significantly increase your confidence in the correctness of your code.

Suppose we want to minimize bubuko.com,布布扣 as a function of bubuko.com,布布扣. For this example, suppose bubuko.com,布布扣, so that bubuko.com,布布扣. In this 1-dimensional case, one iteration of gradient descent is given by

bubuko.com,布布扣

Suppose also that we have implemented some function bubuko.com,布布扣 that purportedly computes bubuko.com,布布扣, so that we implement gradient descent using the update bubuko.com,布布扣.  How can we check if our implementation of bubuko.com,布布扣 is correct?

Recall the mathematical definition of the derivative as

bubuko.com,布布扣

Thus, at any specific value of bubuko.com,布布扣, we can numerically approximate the derivative as follows:

bubuko.com,布布扣

In practice, we set EPSILON to a small constant, say around bubuko.com,布布扣. (There‘s a large range of values of EPSILON that should work well, but we don‘t set EPSILON to be "extremely" small, say bubuko.com,布布扣, as that would lead to numerical roundoff errors.)

Thus, given a function bubuko.com,布布扣 that is supposedly computing bubuko.com,布布扣, we can now numerically verify its correctness by checking that

bubuko.com,布布扣

The degree to which these two values should approximate each other will depend on the details of bubuko.com,布布扣.  But assuming bubuko.com,布布扣, you‘ll usually find that the left- and right-hand sides of the above will agree to at least 4 significant digits (and often many more).

Now, consider the case where bubuko.com,布布扣 is a vector rather than a single real number (so that we have bubuko.com,布布扣 parameters that we want to learn), and bubuko.com,布布扣.  In our neural network example we used "bubuko.com,布布扣," but one can imagine "unrolling" the parameters bubuko.com,布布扣 into a long vector bubuko.com,布布扣.  We now generalize our derivative checking procedure to the case where bubuko.com,布布扣 may be a vector.

 

Suppose we have a function bubuko.com,布布扣 that purportedly computes bubuko.com,布布扣; we‘d like to check if bubuko.com,布布扣 is outputting correct derivative values.  Let bubuko.com,布布扣, where

bubuko.com,布布扣

is the bubuko.com,布布扣-th basis vector (a vector of the same dimension as bubuko.com,布布扣, with a "1" in the bubuko.com,布布扣-th position and "0"s everywhere else).  So, bubuko.com,布布扣 is the same as bubuko.com,布布扣, except its bubuko.com,布布扣-th element has been incremented by EPSILON.  Similarly, let bubuko.com,布布扣 be the corresponding vector with the bubuko.com,布布扣-th element decreased by EPSILON. We can now numerically verify bubuko.com,布布扣‘s correctness by checking, for each bubuko.com,布布扣, that:

bubuko.com,布布扣

When implementing backpropagation to train a neural network, in a correct implementation we will have that

bubuko.com,布布扣

This result shows that the final block of psuedo-code in Backpropagation Algorithm is indeed implementing gradient descent. To make sure your implementation of gradient descent is correct, it is usually very helpful to use the method described above to numerically compute the derivatives of bubuko.com,布布扣, and thereby verify that your computations of bubuko.com,布布扣 and bubuko.com,布布扣 are indeed giving the derivatives you want.

Finally, so far our discussion has centered on using gradient descent to minimize bubuko.com,布布扣.  If you have implemented a function that computes bubuko.com,布布扣 and bubuko.com,布布扣, it turns out there are more sophisticated algorithms than gradient descent for trying to minimize bubuko.com,布布扣.  For example, one can envision an algorithm that uses gradient descent, but automatically tunes the learning rate bubuko.com,布布扣 so as to try to use a step-size that causes bubuko.com,布布扣 to approach a local optimum as quickly as possible. There are other algorithms that are even more sophisticated than this; for example, there are algorithms that try to find an approximation to the Hessian matrix, so that it can take more rapid steps towards a local optimum (similar to Newton‘s method).  A full discussion of these algorithms is beyond the scope of these notes, but one example is the L-BFGS algorithm.  (Another example is the conjugate gradient algorithm.)  You will use one of these algorithms in the programming exercise. The main thing you need to provide to these advanced optimization algorithms is that for any bubuko.com,布布扣, you have to be able to compute bubuko.com,布布扣 and bubuko.com,布布扣.  These optimization algorithms will then do their own internal tuning of the learning rate/step-size bubuko.com,布布扣 (and compute its own approximation to the Hessian, etc.) to automatically search for a value of bubuko.com,布布扣 that minimizes bubuko.com,布布扣.  Algorithms such as L-BFGS and conjugate gradient can often be much faster than gradient descent.

 

 

Autoencoders and Sparsity

From Ufldl

 
Jump to: navigation, search

So far, we have described the application of neural networks to supervised learning, in which we have labeled training examples.  Now suppose we have only a set of unlabeled training examples bubuko.com,布布扣, where bubuko.com,布布扣.  An autoencoder neural network is an unsupervised learning algorithm that applies backpropagation, setting the target values to be equal to the inputs.  I.e., it uses bubuko.com,布布扣.

Here is an autoencoder:

bubuko.com,布布扣

The autoencoder tries to learn a function bubuko.com,布布扣.  In other words, it is trying to learn an approximation to the identity function, so as to output bubuko.com,布布扣 that is similar to bubuko.com,布布扣.  The identity function seems a particularly trivial function to be trying to learn; but by placing constraints on the network, such as by limiting the number of hidden units, we can discover interesting structure about the data.  As a concrete example, suppose the inputs bubuko.com,布布扣 are the pixel intensity values from a bubuko.com,布布扣 image (100 pixels) so bubuko.com,布布扣, and there are bubuko.com,布布扣 hidden units in layer bubuko.com,布布扣.  Note that we also have bubuko.com,布布扣.  Since there are only 50 hidden units, the network is forced to learn a compressed representation of the input. I.e., given only the vector of hidden unit activations bubuko.com,布布扣, it must try to reconstruct the 100-pixel input bubuko.com,布布扣.  If the input were completely random---say, each bubuko.com,布布扣 comes from an IID Gaussian independent of the other features---then this compression task would be very difficult.  But if there is structure in the data, for example, if some of the input features are correlated, then this algorithm will be able to discover some of those correlations. In fact, this simple autoencoder often ends up learning a low-dimensional representation very similar to PCAs.

Our argument above relied on the number of hidden units bubuko.com,布布扣 being small.  But even when the number of hidden units is large (perhaps even greater than the number of input pixels), we can still discover interesting structure, by imposing other constraints on the network.  In particular, if we impose a sparsity constraint on the hidden units, then the autoencoder will still discover interesting structure in the data, even if the number of hidden units is large.

Informally, we will think of a neuron as being "active" (or as "firing") if its output value is close to 1, or as being "inactive" if its output value is close to 0.  We would like to constrain the neurons to be inactive most of the time. This discussion assumes a sigmoid activation function.  If you are using a tanh activation function, then we think of a neuron as being inactive when it outputs values close to -1.

Recall that bubuko.com,布布扣 denotes the activation of hidden unit bubuko.com,布布扣 in the autoencoder.  However, this notation doesn‘t make explicit what was the input bubuko.com,布布扣 that led to that activation.   Thus, we will write bubuko.com,布布扣 to denote the activation of this hidden unit when the network is given a specific input bubuko.com,布布扣.  Further, let

bubuko.com,布布扣

be the average activation of hidden unit bubuko.com,布布扣 (averaged over the training set). We would like to (approximately) enforce the constraint

bubuko.com,布布扣

where bubuko.com,布布扣 is a sparsity parameter, typically a small value close to zero (say bubuko.com,布布扣).  In other words, we would like the average activation of each hidden neuron bubuko.com,布布扣 to be close to 0.05 (say).  To satisfy this constraint, the hidden unit‘s activations must mostly be near 0.

To achieve this, we will add an extra penalty term to our optimization objective that penalizes bubuko.com,布布扣 deviating significantly from bubuko.com,布布扣.  Many choices of the penalty term will give reasonable results.  We will choose the following:

bubuko.com,布布扣

Here, bubuko.com,布布扣 is the number of neurons in the hidden layer, and the index bubuko.com,布布扣 is summing over the hidden units in our network.  If you are familiar with the concept of KL divergence, this penalty term is based on it, and can also be written

bubuko.com,布布扣

where bubuko.com,布布扣 is the Kullback-Leibler (KL) divergence between a Bernoulli random variable with mean bubuko.com,布布扣 and a Bernoulli random variable with mean bubuko.com,布布扣. KL-divergence is a standard function for measuring how different two different distributions are.  (If you‘ve not seen KL-divergence before, don‘t worry about it; everything you need to know about it is contained in these notes.)

This penalty function has the property that bubuko.com,布布扣 if bubuko.com,布布扣, and otherwise it increases monotonically as bubuko.com,布布扣 diverges from bubuko.com,布布扣.  For example, in the figure below, we have set bubuko.com,布布扣, and plotted bubuko.com,布布扣 for a range of values of bubuko.com,布布扣:

bubuko.com,布布扣

We see that the KL-divergence reaches its minimum of 0 at bubuko.com,布布扣, and blows up (it actually approaches bubuko.com,布布扣) as bubuko.com,布布扣 approaches 0 or 1.  Thus, minimizing this penalty term has the effect of causing bubuko.com,布布扣 to be close to bubuko.com,布布扣.

Our overall cost function is now

bubuko.com,布布扣

where bubuko.com,布布扣 is as defined previously, and bubuko.com,布布扣 controls the weight of the sparsity penalty term.  The term bubuko.com,布布扣 (implicitly) depends on bubuko.com,布布扣 also, because it is the average activation of hidden unit bubuko.com,布布扣, and the activation of a hidden unit depends on the parameters bubuko.com,布布扣.

To incorporate the KL-divergence term into your derivative calculation, there is a simple-to-implement trick involving only a small change to your code.  Specifically, where previously for the second layer (bubuko.com,布布扣), during backpropagation you would have computed

bubuko.com,布布扣

now instead compute

bubuko.com,布布扣

One subtlety is that you‘ll need to know bubuko.com,布布扣 to compute this term.  Thus, you‘ll need to compute a forward pass on all the training examples first to compute the average activations on the training set, before computing backpropagation on any example.  If your training set is small enough to fit comfortably in computer memory (this will be the case for the programming assignment), you can compute forward passes on all your examples and keep the resulting activations in memory and compute the bubuko.com,布布扣s.  Then you can use your precomputed activations to perform backpropagation on all your examples.  If your data is too large to fit in memory, you may have to scan through your examples computing a forward pass on each to accumulate (sum up) the activations and compute bubuko.com,布布扣 (discarding the result of each forward pass after you have taken its activations bubuko.com,布布扣 into account for computing bubuko.com,布布扣).  Then after having computed bubuko.com,布布扣, you‘d have to redo the forward pass for each example so that you can do backpropagation on that example.  In this latter case, you would end up computing a forward pass twice on each example in your training set, making it computationally less efficient.

The full derivation showing that the algorithm above results in gradient descent is beyond the scope of these notes.  But if you implement the autoencoder using backpropagation modified this way, you will be performing gradient descent exactly on the objective bubuko.com,布布扣.  Using the derivative checking method, you will be able to verify this for yourself as well.

 

 

Visualizing a Trained Autoencoder

From Ufldl

 
Jump to: navigation, search

Having trained a (sparse) autoencoder, we would now like to visualize the function learned by the algorithm, to try to understand what it has learned. Consider the case of training an autoencoder on bubuko.com,布布扣 images, so that bubuko.com,布布扣. Each hidden unit bubuko.com,布布扣 computes a function of the input:

bubuko.com,布布扣

We will visualize the function computed by hidden unit bubuko.com,布布扣---which depends on the parameters bubuko.com,布布扣 (ignoring the bias term for now)---using a 2D image.  In particular, we think of bubuko.com,布布扣 as some non-linear feature of the input bubuko.com,布布扣. We ask: What input image bubuko.com,布布扣 would cause bubuko.com,布布扣 to be maximally activated? (Less formally, what is the feature that hidden unit bubuko.com,布布扣 is looking for?) For this question to have a non-trivial answer, we must impose some constraints on bubuko.com,布布扣.  If we suppose that the input is norm constrained by bubuko.com,布布扣, then one can show (try doing this yourself) that the input which maximally activates hidden unit bubuko.com,布布扣 is given by setting pixel bubuko.com,布布扣 (for all 100 pixels, bubuko.com,布布扣) to

bubuko.com,布布扣

By displaying the image formed by these pixel intensity values, we can begin to understand what feature hidden unit bubuko.com,布布扣 is looking for.

If we have an autoencoder with 100 hidden units (say), then we our visualization will have 100 such images---one per hidden unit.  By examining these 100 images, we can try to understand what the ensemble of hidden units is learning.

When we do this for a sparse autoencoder (trained with 100 hidden units on 10x10 pixel inputs1 we get the following result:

bubuko.com,布布扣 
bubuko.com,布布扣

Each square in the figure above shows the (norm bounded) input image bubuko.com,布布扣 that maximally actives one of 100 hidden units.  We see that the different hidden units have learned to detect edges at different positions and orientations in the image.

These features are, not surprisingly, useful for such tasks as object recognition and other vision tasks.  When applied to other input domains (such as audio), this algorithm also learns useful representations/features for those domains too.


1 The learned features were obtained by training on whitened natural images.  Whitening is a preprocessing step which removes redundancy in the input, by causing adjacent pixels to become less correlated.

 

Sparse Autoencoder Notation Summary

From Ufldl

 
Jump to: navigation, search

Here is a summary of the symbols used in our derivation of the sparse autoencoder: 

SymbolMeaning
bubuko.com,布布扣 Input features for a training example, bubuko.com,布布扣.
bubuko.com,布布扣 Output/target values.  Here, bubuko.com,布布扣 can be vector valued.  In the case of an autoencoder, bubuko.com,布布扣.
bubuko.com,布布扣 The bubuko.com,布布扣-th training example
bubuko.com,布布扣 Output of our hypothesis on input bubuko.com,布布扣, using parameters bubuko.com,布布扣.  This should be a vector of

the same dimension as the target value bubuko.com,布布扣.

bubuko.com,布布扣 The parameter associated with the connection between unit bubuko.com,布布扣 in layer bubuko.com,布布扣, and

unit bubuko.com,布布扣 in layer bubuko.com,布布扣.

bubuko.com,布布扣 The bias term associated with unit bubuko.com,布布扣 in layer bubuko.com,布布扣.  Can also be thought of as the parameter associated with the connection between the bias unit in layer bubuko.com,布布扣 and unit bubuko.com,布布扣 in layer bubuko.com,布布扣.
bubuko.com,布布扣 Our parameter vector.  It is useful to think of this as the result of taking the parameters bubuko.com,布布扣 and ``unrolling them into a long column vector.
bubuko.com,布布扣 Activation (output) of unit bubuko.com,布布扣 in layer bubuko.com,布布扣 of the network.

In addition, since layer bubuko.com,布布扣 is the input layer, we also have bubuko.com,布布扣.

bubuko.com,布布扣 The activation function.  Throughout these notes, we used bubuko.com,布布扣.
bubuko.com,布布扣 Total weighted sum of inputs to unit bubuko.com,布布扣 in layer bubuko.com,布布扣.  Thus, bubuko.com,布布扣.
bubuko.com,布布扣 Learning rate parameter
bubuko.com,布布扣 Number of units in layer bubuko.com,布布扣 (not counting the bias unit).
bubuko.com,布布扣 Number layers in the network.  Layer bubuko.com,布布扣 is usually the input layer, and layer bubuko.com,布布扣 the output layer.
bubuko.com,布布扣 Weight decay parameter.
bubuko.com,布布扣 For an autoencoder, its output; i.e., its reconstruction of the input bubuko.com,布布扣.   Same meaning as bubuko.com,布布扣.
bubuko.com,布布扣 Sparsity parameter, which specifies our desired level of sparsity
bubuko.com,布布扣 The average activation of hidden unit bubuko.com,布布扣 (in the sparse autoencoder).
bubuko.com,布布扣 Weight of the sparsity penalty term (in the sparse autoencoder objective).

 

 

Exercise:Sparse Autoencoder

From Ufldl

 
Jump to: navigation, search

Contents

[hide]

Download Related Reading

Sparse autoencoder implementation

In this problem set, you will implement the sparse autoencoder algorithm, and show how it discovers that edges are a good representation for natural images. (Images provided by Bruno Olshausen.) The sparse autoencoder algorithm is described in the lecture notes found on the course website.

In the file sparseae_exercise.zip, we have provided some starter code in Matlab. You should write your code at the places indicated in the files ("YOUR CODE HERE"). You have to complete the following files: sampleIMAGES.m, sparseAutoencoderCost.m, computeNumericalGradient.m.  The starter code in train.m shows how these functions are used.

Specifically, in this exercise you will implement a sparse autoencoder,  trained with 8×8 image patches using the L-BFGS optimization algorithm.

A note on the software: The provided .zip file includes a subdirectory minFunc with 3rd party software implementing L-BFGS, that  is licensed under a Creative Commons, Attribute, Non-Commercial license.   If you need to use this software for commercial purposes, you can  download and use a different function (fminlbfgs) that can serve the same purpose, but runs ~3x slower for this exercise (and thus is less recommended).  You can read more about this in the Fminlbfgs_Details page. 

 

Step 1: Generate training set

The first step is to generate a training set.   To get a single training  example x, randomly pick one of the 10 images, then randomly sample  an 8×8 image patch from the selected image, and convert the image patch (either  in row-major order or column-major order; it doesn‘t matter) into a 64-dimensional  vector to get a training example bubuko.com,布布扣

Complete the code in sampleIMAGES.m.  Your code should sample 10000 image  patches and concatenate them into a 64×10000 matrix. 

To make sure your implementation is working, run the code in "Step 1" of train.m. This should result in a plot of a random sample of 200 patches from the dataset. 

Implementational tip: When we run our implemented sampleImages(), it takes under 5 seconds.  If your implementation takes over 30 seconds, it may be because you are accidentally making a copy of an entire 512×512 image each time you‘re picking a random image.  By copying a 512×512 image 10000 times, this can make your implementation much less efficient.  While this doesn‘t slow down your code significantly for this exercise (because we have only 10000 examples), when we scale to much larger problems later this quarter with 106 or more examples, this will significantly slow down your code.  Please implement sampleIMAGES so that you aren‘t making a copy of an entire 512×512 image each time you need to cut out an 8x8 image patch.

Step 2: Sparse autoencoder objective

Implement code to compute the sparse autoencoder cost function Jsparse(W,b) (Section 3 of the lecture notes) and the corresponding derivatives of Jsparse with respect to  the different parameters.  Use the sigmoid function for the activation function,  bubuko.com,布布扣.  In particular, complete the code in sparseAutoencoderCost.m.

The sparse autoencoder is parameterized by matrices  bubuko.com,布布扣, bubuko.com,布布扣 vectors  bubuko.com,布布扣bubuko.com,布布扣. However, for subsequent notational convenience, we will "unroll" all of these parameters into a very long parameter vector θ with s1s2 + s2s3 + s2 + s3 elements.  The code for converting between the (W(1),W(2),b(1),b(2)) and the θ parameterization  is already provided in the starter code.

Implementational tip: The objective Jsparse(W,b) contains 3 terms, corresponding to the squared error term, the weight decay term, and the sparsity penalty.  You‘re welcome to implement this however you want, but for ease of debugging, you might implement the cost function and derivative computation (backpropagation) only for the  squared error term first (this corresponds to setting λ = β = 0), and implement  the gradient checking method in the next section to first verify that this code is correct.  Then only after you have verified that the objective and derivative calculations corresponding to the squared error  term are working, add in code to compute the weight decay and sparsity penalty terms and their corresponding derivatives. 

Step 3: Gradient checking

Following Section 2.3 of the lecture notes, implement code for gradient checking.   Specifically, complete the code in computeNumericalGradient.m.  Please  use EPSILON = 10-4 as described in the lecture notes. 

We‘ve also provided code in checkNumericalGradient.m for you to test your code.  This code defines a simple quadratic function bubuko.com,布布扣 given by  bubuko.com,布布扣, and evaluates it at the point x = (4,10)T.  It allows you to verify that your numerically evaluated gradient is very close to the true (analytically computed) gradient.  

After using checkNumericalGradient.m to make sure your implementation is correct,  next use computeNumericalGradient.m to make sure that your sparseAutoencoderCost.m is computing derivatives correctly.  For details, see Steps 3 in train.m.  We strongly encourage you not to proceed to the next step until you‘ve verified that your derivative computations are correct. 

Implementational tip: If you are debugging your code, performing gradient checking on smaller models  and smaller training sets (e.g., using only 10 training examples and 1-2 hidden  units) may speed things up.

Step 4: Train the sparse autoencoder

Now that you have code that computes  Jsparse and its derivatives, we‘re ready to minimize  Jsparse with respect to its parameters, and thereby train our sparse autoencoder.

We will use the L-BFGS algorithm.  This is provided to you in a function called minFunc (code provided by Mark Schmidt) included in the starter code.  (For the purpose of this assignment, you only need to call minFunc with the default parameters. You do not need to know how L-BFGS works.)  We have already provided code in train.m (Step 4) to call minFunc.  The minFunc code assumes that the parameters to be optimized are a long parameter vector; so we will use the "θ" parameterization rather than the "(W(1),W(2),b(1),b(2))" parameterization when passing our parameters to it.

Train a sparse autoencoder with 64 input units, 25 hidden units, and 64 output units. In our starter code, we have provided a function for initializing the parameters. We initialize the biases bubuko.com,布布扣 to zero, and the weights bubuko.com,布布扣 to random numbers drawn uniformly from the interval  bubuko.com,布布扣, where nin is the fan-in (the number of inputs feeding into a node) and nout is the fan-in (the number of units that a node feeds into).

The values we provided for the various parameters (λ,β,ρ, etc.) should work, but feel free to play with different settings of the parameters as well.

Implementational tip: Once you have your backpropagation implementation correctly computing the derivatives (as verified using gradient checking in Step 3), when you are now using it with L-BFGS to optimize Jsparse(W,b), make sure you‘re not doing gradient-checking on every step.  Backpropagation can be used to compute the derivatives of Jsparse(W,b) fairly efficiently, and if you were additionally computing the gradient numerically on every step, this would slow down your program significantly. 

 

Step 5: Visualization

After training the autoencoder, use display_network.m to visualize the learned weights.  (See train.m, Step 5.)  Run "print -djpeg weights.jpg" to save the visualization to a file "weights.jpg" (which you will submit together with your code). 

Results

To successfully complete this assignment, you should demonstrate your sparse autoencoder algorithm learning a set of edge detectors.  For example, this was the visualization we obtained: 

bubuko.com,布布扣

Our implementation took around 5 minutes to run on a fast computer. In case you end up needing to try out multiple implementations or  different parameter values, be sure to budget enough time for debugging  and to run the experiments you‘ll need. 

Also, by way of comparison, here are some visualizations from implementations that we do not consider successful (either a buggy implementation, or where the parameters were poorly tuned):

bubuko.com,布布扣 bubuko.com,布布扣 bubuko.com,布布扣

bubuko.com,布布扣 bubuko.com,布布扣 bubuko.com,布布扣

 

【转帖】Andrew ng 【Sparse Autoencoder 】@UFLDL Tutorial

标签:des   style   blog   http   ar   io   os   sp   for   

原文地址:http://www.cnblogs.com/daleloogn/p/4170451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!