我正在尝试运行 caffe Experiment。我在我的 Train.prototxt 中使用以下损失层,
layer {
name: "loss"
type: "SoftmaxWithLoss"
bottom: "ip2"
bottom: "label"
include {
phase: TRAIN
}
}
我看到训练开始时显示以下配置,
I0923 21:19:13.101313 26423 net.cpp:410] 丢失 <- ip2
I0923 21:19:13.101323 26423 net.cpp:410] 丢失 <- 标签
I0923 21:19:13.101339 26423 net.cpp:368] 丢失 -> (自动的)
我没有top
在损失层中给出参数。
自动(损失->(自动))在这里到底是什么意思?
提前致谢!