Caffe 文件 solver.prototxt 没有提供 bvlc_reference_caffenet.caffemodel 的密钥
Caffe file solver.prototxt gives no keys for bvlc_reference_caffenet.caffemodel
我正在尝试编译以下模型:
http://manutdzou.github.io/2016/12/27/FCN-segmentation.html
但是我得到了错误:
--------> 按键错误:'fc6_my'
当我查看时:solver.net.params.keys()
我得到输出:odict_keys([ ])
我不知道为什么没有为对象提供密钥:solver.net.params
图层名称实际上在模型定义文件中指定,即通常 train_val.prototxt 但不在 solver.prototxt 中。
我正在尝试编译以下模型:
http://manutdzou.github.io/2016/12/27/FCN-segmentation.html
但是我得到了错误:
--------> 按键错误:'fc6_my'
当我查看时:solver.net.params.keys()
我得到输出:odict_keys([ ])
我不知道为什么没有为对象提供密钥:solver.net.params
图层名称实际上在模型定义文件中指定,即通常 train_val.prototxt 但不在 solver.prototxt 中。