【发布时间】:2016-09-08 01:40:05
【问题描述】:
我尝试使用 mnist 的数据集,这是 github 中提供的一个示例,在 cmd 的接口上运行 Memnet 模型。
模型从here下载
我相应地修改了它的 deploy.prototxt。不知道...有人可以帮我解决这个问题吗?
但它一直告诉我发生了一些错误,如图所示:
【问题讨论】:
标签: neural-network deep-learning caffe conv-neural-network
我尝试使用 mnist 的数据集,这是 github 中提供的一个示例,在 cmd 的接口上运行 Memnet 模型。
模型从here下载
我相应地修改了它的 deploy.prototxt。不知道...有人可以帮我解决这个问题吗?
但它一直告诉我发生了一些错误,如图所示:
【问题讨论】:
标签: neural-network deep-learning caffe conv-neural-network
命令行界面应以-solver 和solver.prototxt 文件的形式获取(其中train_val.prototxt 作为其参数之一)。您不能将train_val.prototxt 直接提供给caffe train。
您可以查看 caffe 的 examples 子文件夹并找到一些 solver.prototxt 的示例。一个简单的可以在examples/mnist找到,你可以查看lenet_solver.prototxt。
【讨论】: