Caffe源码解读: SoftmaxLayer的前向与反向传播

1.前向传播部分

这部分直接参照softmax公式:

                                 

template <typename Dtype>
void SoftmaxLayer<Dtype>::Forward_cpu(const vector<Blob<Dtype>*>& bottom,
    const vector<Blob<Dtype>*>& top) {
  const Dtype* bottom_data = bottom[0]->cpu_data();     //输入数据
  Dtype* top_data = top[0]->mutable_cpu_data();         //输出数据
  Dtype* scale_data = scale_.mutable_cpu_data();        //保存中间结果数据
  int channels = bottom[0]->shape(softmax_axis_);       //通道数
  int dim = bottom[0]->count() / outer_num_;            //类别数目
  caffe_copy(bottom[0]->count(), bottom_data, top_data);
  // We need to subtract the max to avoid numerical issues, compute the exp,指数不能太大,避免数值问题。
  // and then normalize.
  for (int i = 0; i < outer_num_; ++i) {                        //i表示第i个数据,每个数据有dim维
    // initialize scale_data to the first plane
    caffe_copy(inner_num_, bottom_data + i * dim, scale_data);   
    for (int j = 0; j < channels; j++) {
      for (int k = 0; k < inner_num_; k++) {
        scale_data[k] = std::max(scale_data[k],                 //获得每一参数维的最大值
            bottom_data[i * dim + j * inner_num_ + k]);
      }
    }
    // subtraction 通过矩阵相乘的方式来计算,有outer_num个top_data,每层元素减去该层的最大值。太巧妙了 
    caffe_cpu_gemm<Dtype>(CblasNoTrans, CblasNoTrans, channels, inner_num_,
        1, -1., sum_multiplier_.cpu_data(), scale_data, 1., top_data);
	//C = alpha*op( A )*op( B ) + beta*C  

    // exponentiation 计算自然对数
    caffe_exp<Dtype>(dim, top_data, top_data);

    // sum after exp  每一层各自求和放到scale_data中  
    caffe_cpu_gemv<Dtype>(CblasTrans, channels, inner_num_, 1.,
        top_data, sum_multiplier_.cpu_data(), 0., scale_data);

    // division       每一层各自除以该层的和
    for (int j = 0; j < channels; j++) {
      caffe_div(inner_num_, top_data, scale_data, top_data);
      top_data += inner_num_;
    }
  }
}

2.后向传播部分

原理分析:

backward过程的输入:1,softmax正向传播的输出a,也就是top_data。

                                    2,loss对a的梯度,也就是top_diff。

backward过程的输出:loss对softmax正向传播的输入

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值