caffe-reduction layer

来源:互联网 发布:js中的层级选择器 编辑:程序博客网 时间:2024/06/05 07:03

Reduction


usage:

layer {name: "reductionx"bottom: "rnn1"top: "reductionx"type: "Reduction"loss_weight: 1reduction_param {axis: 0}}

this layer is used in rnn-unrolled network.

layer {  name: "rnn_o_concat"  type: "Concat"  bottom: "o_1"  bottom: "o_2"  bottom: "o_3"  top: "o"  concat_param {    axis: 0  }}layer {  name: "o_pseudoloss"  type: "Reduction"  bottom: "o"  top: "o_pseudoloss"  loss_weight: 1}
 


0 0
原创粉丝点击