码迷,mamicode.com
首页 > 其他好文 > 详细

Autoencoders and Sparsity(一)

时间:2014-09-13 15:50:55      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   strong   for   

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.

 

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.

 偏离,惩罚

损失函数

无稀疏约束时网络的损失函数表达式如下:

bubuko.com,布布扣

 

带稀疏约束的损失函数如下:

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,布布扣.

 

损失函数的偏导数的求法

bubuko.com,布布扣

而加入了稀疏性后,神经元节点的误差表达式由公式:

bubuko.com,布布扣

变成公式:

bubuko.com,布布扣

 

梯度下降法求解

有了损失函数及其偏导数后就可以采用梯度下降法来求网络最优化的参数了,整个流程如下所示:

bubuko.com,布布扣

从上面的公式可以看出,损失函数的偏导其实是个累加过程,每来一个样本数据就累加一次。这是因为损失函数本身就是由每个训练样本的损失叠加而成的,而按照加法的求导法则,损失函数的偏导也应该是由各个训练样本所损失的偏导叠加而成。从这里可以看出,训练样本输入网络的顺序并不重要,因为每个训练样本所进行的操作是等价的,后面样本的输入所产生的结果并不依靠前一次输入结果(只是简单的累加而已,而这里的累加是顺序无关的)。

 

转自:http://www.cnblogs.com/tornadomeet/archive/2013/03/19/2970101.html

Autoencoders and Sparsity(一)

标签:style   blog   http   color   io   os   ar   strong   for   

原文地址:http://www.cnblogs.com/sprint1989/p/3969857.html

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