2

我正在尝试使用我自己的数字图像数据集来测试 mnist。
我为此编写了一个 python 脚本,但它给出了一个错误。错误在代码的第 16 行。实际上我无法发送图像进行测试。给我一些建议。提前致谢。

import numpy as np
import sys
import caffe
import matplotlib.pyplot as plt
import os

caffe_root = '../caffe-master/'
MODEL_FILE = './examples/mnist/lenet.prototxt'
PRETRAINED = './examples/mnist/lenet_iter_10000.caffemodel'
IMAGE_FILE = '/home/hemant/OpenCVProject/grey/img001-00001.png'#image path

input_image = caffe.io.load_image(IMAGE_FILE)

net = caffe.Net(MODEL_FILE, PRETRAINED,caffe.TEST)
caffe.set_mode_cpu()
out = net.forward([input_image])
print out['prob']
4

2 回答 2

1

为什么不使用 python 包装类Classifier

net = caffe.Classifier( MODEL_FILE, PRETRAINED )
net.predict( [input_image], oversmaple=False )

我不是 100% 确定,但我认为 LeNeT 模型需要灰度图像,您可能需要阅读图像

input_image = caffe.io.load_image(IMAGE_FILE, color=False)
于 2015-04-21T15:24:35.953 回答
1
import caffe
import os

model_file = '../examples/mnist/lenet.prototxt'
pretrained_file = '../examples/mnist/lenet_iter_10000.caffemodel'
net = caffe.Classifier(model_file, pretrained_file, image_dims=(28, 28), raw_scale=255)
score = net.predict([caffe.io.load_image('img/1.bmp', color=False)], oversample=False)
print score

这段代码对我有用,输出是这样的:

...
[[ 0.  0.  1.  0.  0.  0.  0.  0.  0.  0.]]
于 2016-01-05T09:48:37.843 回答