当前位置:   article > 正文

caffe 的损失函数 loss 原文解析-多个损失函数 loss 网络搭建_caffe 多个损失

caffe 多个损失

caffe的原始的loss的英文描述:

http://caffe.berkeleyvision.org/tutorial/loss.html

点击打开链接

由于caffe支持的是有向无环图的网络结构。所以对于多个损失函数的网络结构也是绝对支持的,文中也说明了这一点:

Loss weights

For nets with multiple layers producing a loss (e.g., a network that both classifies the input using a SoftmaxWithLoss layer and reconstructs it using a EuclideanLoss layer), loss weights can be used to specify their relative importance.

此句话说明了这一点。但是此处也详细的说明了:loss_weight 参数的重要性,需要自己不断的实验调参数的。如果参数选取不好,就会导致结果不收敛,参数选取的好就会得到意想不到的结果。

最后也说明了最后输出的是多个损失函数的权重之和。如下:

The final loss in Caffe, then, is computed by summing the total weighted loss over the network, as in the following pseudo-code:

  1. loss := 0
  2. for layer in layers:
  3. for top, loss_weight in layer.tops, layer.loss_weights:
  4. loss += loss_weight * sum(top)
最后,再次感叹下:神经网络的神通广大,只要你想的到,哪怕上天入地,它就可以做的到,思维的灵感,神经的灵性!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/133263
推荐阅读
相关标签
  

闽ICP备14008679号