深度学习-CAFFE利用CIFAR10网络模型训练自己的图像数据获得模型-4应用生成模型进行预测

该步可以分两种情况进行使用:1.使用caffe所提供的 classify.py进行预测;2.使用python代码进行预测

 

1.使用caffe所提供的 classify.py进行预测

caffe目录下面的python里有一个classify.py,进行分类。但是,好像不太好用,网上有人对代码进行了修改。修改的地方,见以前博客。

 

在终端执行:

python python/classify.py --print_results --model_def examples/testCreateLmDB/my_quick.prototxt --pretrained_model examples/testCreateLmDB/my_quick_iter_4000.caffemodel.h5 --labels_file examples/testCreateLmDB/mylabel.txt --center_only  examples/testCreateLmDB/120.jpg foo



2.使用python代码进行预测

import numpy as np
import matplotlib.pyplot as plt

#[1]Load caffe 第一步:导入caffe
# The caffe module needs to be on the Python path;    
#  we'll add it here explicitly.    
import sys    
caffe_root = '/home/lw/caffe/'  # this file should be run from {caffe_root}/examples (otherwise change this line)    
sys.path.insert(0, caffe_root + 'python')    
        
import caffe    
# If you get "No module named _caffe", either you have not built pycaffe or you have the wrong path.  

#[1]Import Net  第二步使用NET,注意相关文件所在路径
caffe.set_mode_gpu()    
      
model_def = caffe_root + 'examples/cifar10/cifar10_quick.prototxt' 
model_pretrained = caffe_root + 'examples/cifar10/cifar10_quick_iter_4000.caffemodel.h5'
MEAN_PROTO_PATH = caffe_root+'examples/cifar10/mean.binaryproto' #这里是二进制文件,而不是Python的npy文件  
# load the mean ImageNet image (as distributed with Caffe) for subtraction   

blob = caffe.proto.caffe_pb2.BlobProto()  
data = open(MEAN_PROTO_PATH, 'rb' ).read()  
blob.ParseFromString(data)  
array = np.array(caffe.io.blobproto_to_array(blob))# 将blob中的均值转换成numpy格式,array的shape (mean_number,channel, hight, width)  
mu = array[0]  
mean = mu.mean(1).mean(1)  # average over pixels to obtain the mean (BGR) pixel values   
 
#第三步,使用分类器
net = caffe.Classifier(model_def, model_pretrained,mean=mean,  
                              channel_swap=(2,1,0),#RGB通道与BGR    
                              raw_scale=255,#把图片归一化到0~1之间    
                              image_dims=(32, 32))#设置输入图片的大小 
#Classifier
label_list=['airplane','automobile','bird','cat','deer','dog','frog','horse','ship','truck']  
input_image = caffe.io.load_image(caffe_root + 'examples/images/cat_gray.jpg')#读取图片  
  
#第四步:显示原图片,以及分类预测结果  
prediction = net.predict([input_image])#图片分类  
str_gender=label_list[prediction[0].argmax()]  
print str_gender  

print '原数据'
print prediction[0]
print label_list
print 

print '排序后的结果'
indices = (-prediction[0]).argsort()   #排序输出数组的下标,前面加负号是降序
meta = [
    (label_list[i], '%.5f' % prediction[0][i])
    for i in indices
]

print meta

plt.imshow(input_image)    
plt.title(str_gender)    
plt.show() 

print '结束'

执行效果如图所示:





  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值