Caffe量化推理之自定义模型Prototxt的修改

2018-10-16 17:56:00
/
0 点赞
/
34 阅读
2018-10-16
layer {
  name: "loss3/top-1"
  type: "Accuracy"
  bottom: "Softmax1"
  bottom: "label"
  top: "loss3/top-1"
  include {
    phase: TEST
  }
}
layer {
  name: "loss3/top-5"
  type: "Accuracy"
  bottom: "Softmax1"
  bottom: "label"
  top: "loss3/top-5"
  include {
    phase: TEST
  }
  accuracy_param {
    top_k: 5
  }
}

版权属于:

那棵树看起来生气了

本文链接:

https://dengyb.com/archives/86.html(转载时请注明本文出处及文章链接)