您的位置:首页 > Web前端

Caffe: 运行classify.py时报错 Mean shape incompatible with input shape

2016-05-06 11:20 381 查看

运行classify.py时报错 Mean shape incompatible with input shape

转载自:http://www.ithao123.cn/content-8389876.html

[摘要:办理方式参考http://stackoverflow.com/questions/29842935/mean-shape-incompatible-with-input-shape-caffe-classification-error-in-io-py 正在运转caffe的python例子时,敕令止输进 python classify.py cat.jpg foo 报错 ValueError:]

解决方法参考http://stackoverflow.com/questions/29842935/mean-shape-incompatible-with-input-shape-caffe-classification-error-in-io-py

在运行caffe的python例子时,命令行输入

python classify.py cat.jpg  foo

报错

ValueError: Mean shape incompatible with input shape.

原因是‘mean’与‘input’的尺寸不同造成的。

参考前面的文章,修改了 ./python/caffe/io.py 文件

将:

if ms != self.inputs[in_][1:]: raise ValueError('Mean shape incompatible with input shape.')

修改为:

if ms != self.inputs[in_][1:]: print(self.inputs[in_]) in_shape = self.inputs[in_][1:] m_min, m_max = mean.min(), mean.max() normal_mean = (mean - m_min) / (m_max - m_min) mean = resize_image(normal_mean.transpose((1,2,0)),     in_shape[1:]).transpose((2,0,1)) *     (m_max - m_min) + m_min #raise ValueError('Mean shape incompatible with input shape.')
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: