-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Description
The last layers should hold different names (or types) :
layer {
name: "loss1/top-1" <== the name is loss
type: "Accuracy" <== the type is accuracy
bottom: "loss1/classifier"
bottom: "label"
top: "loss1/top-1"
include {
phase: TEST
}
}
layer {
name: "loss1/top-3" <== the name is loss
type: "Accuracy" <== the type is accuracy
bottom: "loss1/classifier"
bottom: "label"
top: "loss1/top-3"
include {
phase: TEST
}
accuracy_param {
top_k: 3
}
It should be like this :
layer {
name: "acc/top-1"
type: "Accuracy"
bottom: "fc1"
bottom: "label"
top: "acc/top-1"
include {
phase: TEST
}
}
layer {
name: "acc/top-5"
type: "Accuracy"
bottom: "fc1"
bottom: "label"
top: "acc/top-5"
include {
phase: TEST
}
accuracy_param {
top_k: 5
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels