【发布时间】:2016-04-24 06:00:08
【问题描述】:
如何在 caffe 中使用 SigmoidCrossEntropyLoss 解决二元类问题? 能给我一个prototxt的例子吗?
【问题讨论】:
标签: deep-learning caffe matcaffe
如何在 caffe 中使用 SigmoidCrossEntropyLoss 解决二元类问题? 能给我一个prototxt的例子吗?
【问题讨论】:
标签: deep-learning caffe matcaffe
对于每个训练样本,您需要 label 输入为零或一。除此之外
layer {
name: "loss"
type: "SigmoidCrossEntropyLoss"
bottom: "predict1d"
bottom: "label"
top: "loss"
}
【讨论】: