caffe基础-06softmax层的配置
#softmax-loss layer:输出loss值 具体参见 #http://blog.youkuaiyun.com/supercally/article/details/54234115
layer {
name: "loss"
type: "SoftmaxWithLoss"
bottom: "ip1"
bottom: "label"
top: "loss"
}
#softmax layer: 输出似然值
layers {
bottom: "cls3_fc"
top: "prob"
name: "prob"
type: “Softmax"
}