BUG|caffe 版本

问题:

ValueError: Deprecated caffe input usage, please change it to input layer.

原因:

prototxt格式是旧的

解决方案:

可以按照下面格式修改

layer {name: "data"type: "Input"top: "data"input_param { shape { dim: 1 dim: 3 dim: 24 dim: 24 } }}

你可能感兴趣的:(BUG|caffe 版本)