【发布时间】:2017-02-06 03:18:06
【问题描述】:
我正在使用一些较旧的 caffe 分支。现在我需要通过对输入层进行切片来修改prototxt文件。
我知道在新语法中它看起来像这样:
layer {
name: "slice"
type: "Slice"
bottom: "labelAndMask"
## Example of layer with a shape N x 5 x Height x Width
top: "label"
top: "mask"
slice_param {
axis: 1
slice_point: 1
}
}
旧的 prototxt 格式的等价物是什么?另外,我可以自己在 caffe 资源中的哪个位置查找此内容?
【问题讨论】:
标签: machine-learning neural-network deep-learning caffe protocol-buffers