zoukankan      html  css  js  c++  java
  • Linear Decoders

    Sparse Autoencoder Recap

    In the sparse autoencoder, we had 3 layers of neurons: an input layer, a hidden layer and an output layer. In our previous description of autoencoders (and of neural networks), every neuron in the neural network used the same activation function. In these notes, we describe a modified version of the autoencoder in which some of the neurons use a different activation function. This will result in a model that is sometimes simpler to apply, and can also be more robust to variations in the parameters.

    Recall that each neuron (in the output layer) computed the following:

    
egin{align}
z^{(3)} &= W^{(2)} a^{(2)} + b^{(2)} \
a^{(3)} &= f(z^{(3)})
end{align}

    where a(3) is the output. In the autoencoder, a(3) is our approximate reconstruction of the input x = a(1).

    Because we used a sigmoid activation function for f(z(3)), we needed to constrain or scale the inputs to be in the range[0,1], since the sigmoid function outputs numbers in the range [0,1].

    引入 —— 相同的activation function ,非线性映射会导致输入和输出不等

    Linear Decoder

    One easy fix for this problem is to set a(3) = z(3). Formally, this is achieved by having the output nodes use an activation function that's the identity function f(z) = z, so that a(3) = f(z(3)) = z(3). 输出结点不适用sigmoid 函数

    This particular activation function f(cdot) is called the linear activation function。Note however that in the hidden layer of the network, we still use a sigmoid (or tanh) activation function, so that the hidden unit activations are given by (say) 	extstyle a^{(2)} = sigma(W^{(1)}x + b^{(1)}), where sigma(cdot) is the sigmoid function, x is the input, and W(1) andb(1) are the weight and bias terms for the hidden units. It is only in the output layer that we use the linear activation function.

    An autoencoder in this configuration--with a sigmoid (or tanh) hidden layer and a linear output layer--is called a linear decoder.

    In this model, we have hat{x} = a^{(3)} = z^{(3)} = W^{(2)}a + b^{(2)}. Because the output hat{x} is a now linear function of the hidden unit activations, by varying W(2), each output unit a(3) can be made to produce values greater than 1 or less than 0 as well. This allows us to train the sparse autoencoder real-valued inputs without needing to pre-scale every example to a specific range.

    Since we have changed the activation function of the output units, the gradients of the output units also change. Recall that for each output unit, we had set set the error terms as follows:

    
egin{align}
delta_i^{(3)}
= frac{partial}{partial z_i} ;;
        frac{1}{2} left|y - hat{x}
ight|^2 = - (y_i - hat{x}_i) cdot f'(z_i^{(3)})
end{align}

    where y = x is the desired output, hat{x} is the output of our autoencoder, and f(cdot) is our activation function. Because in the output layer we now have f(z) = z, that implies f'(z) = 1 and thus the above now simplifies to:

    
egin{align}
delta_i^{(3)} = - (y_i - hat{x}_i)
end{align}
          output结点

    Of course, when using backpropagation to compute the error terms for the hidden layer:

    
egin{align}
delta^{(2)} &= left( (W^{(2)})^Tdelta^{(3)}
ight) ullet f'(z^{(2)})
end{align}
     hidden结点

    Because the hidden layer is using a sigmoid (or tanh) activation f, in the equation above f'(cdot) should still be the derivative of the sigmoid (or tanh) function.

  • 相关阅读:
    10个很有用的高级Git命令
    25套用于Web UI设计的免费PSD网页元素模板
    101个MySQL 的调节和优化的提示
    10款最新且超实用的开发框架
    30 个有用的 HTML5 和 CSS3 表单设计
    cetos7最小化安装设置网络启动和更新yum源
    百度地图api开发:根据坐标获得地理描述地址
    防止sql注入的函数addslashes()
    jquery使用ajax提交form表单
    Git常用命令
  • 原文地址:https://www.cnblogs.com/sprint1989/p/3981524.html
Copyright © 2011-2022 走看看