TensorFlow卷积神经网络之使用训练好的模型识别猫狗图片


Posted in Python onMarch 14, 2019

本文是Python通过TensorFlow卷积神经网络实现猫狗识别的姊妹篇,是加载上一篇训练好的模型,进行猫狗识别

本文逻辑:

  1. 我从网上下载了十几张猫和狗的图片,用于检验我们训练好的模型。
  2. 处理我们下载的图片
  3. 加载模型
  4. 将图片输入模型进行检验

代码如下:

#coding=utf-8 
import tensorflow as tf 
from PIL import Image 
import matplotlib.pyplot as plt
import input_data 
import numpy as np
import model
import os 
#从指定目录中选取一张图片 
def get_one_image(train): 
  files = os.listdir(train)
  n = len(files)
  ind = np.random.randint(0,n)
  img_dir = os.path.join(train,files[ind]) 
  image = Image.open(img_dir) 
  plt.imshow(image)
  plt.show()
  image = image.resize([208, 208]) 
  image = np.array(image)
  return image 
def evaluate_one_image(): 
 #存放的是我从百度下载的猫狗图片路径
  train = '/Users/yangyibo/GitWork/pythonLean/AI/猫狗识别/testImg/' 
  image_array = get_one_image(train) 
  with tf.Graph().as_default(): 
    BATCH_SIZE = 1 # 因为只读取一副图片 所以batch 设置为1
    N_CLASSES = 2 # 2个输出神经元,[1,0] 或者 [0,1]猫和狗的概率
    # 转化图片格式
    image = tf.cast(image_array, tf.float32) 
    # 图片标准化
    image = tf.image.per_image_standardization(image)
    # 图片原来是三维的 [208, 208, 3] 重新定义图片形状 改为一个4D 四维的 tensor
    image = tf.reshape(image, [1, 208, 208, 3]) 
    logit = model.inference(image, BATCH_SIZE, N_CLASSES) 
    # 因为 inference 的返回没有用激活函数,所以在这里对结果用softmax 激活
    logit = tf.nn.softmax(logit) 
    # 用最原始的输入数据的方式向模型输入数据 placeholder
    x = tf.placeholder(tf.float32, shape=[208, 208, 3]) 
    # 我门存放模型的路径
    logs_train_dir = '/Users/yangyibo/GitWork/pythonLean/AI/猫狗识别/saveNet/'  
    # 定义saver 
    saver = tf.train.Saver() 
    with tf.Session() as sess: 
      print("从指定的路径中加载模型。。。。")
      # 将模型加载到sess 中 
      ckpt = tf.train.get_checkpoint_state(logs_train_dir) 
      if ckpt and ckpt.model_checkpoint_path: 
        global_step = ckpt.model_checkpoint_path.split('/')[-1].split('-')[-1] 
        saver.restore(sess, ckpt.model_checkpoint_path) 
        print('模型加载成功, 训练的步数为 %s' % global_step) 
      else: 
        print('模型加载失败,,,文件没有找到') 
      # 将图片输入到模型计算
      prediction = sess.run(logit, feed_dict={x: image_array})
      # 获取输出结果中最大概率的索引
      max_index = np.argmax(prediction) 
      if max_index==0: 
        print('猫的概率 %.6f' %prediction[:, 0]) 
      else: 
        print('狗的概率 %.6f' %prediction[:, 1]) 
# 测试
evaluate_one_image()

/Users/yangyibo/GitWork/pythonLean/AI/猫狗识别/testImg/ 存放的是我从百度下载的猫狗图片

TensorFlow卷积神经网络之使用训练好的模型识别猫狗图片

执行结果:

因为从testimg 中选取图片是随机的,所以每次执行的结果不同

从指定的路径中加载模型。。。。
模型加载成功, 训练的步数为 11999
狗的概率 0.964047
[Finished in 6.8s]

代码地址:https://github.com/527515025/My-TensorFlow-tutorials/blob/master/猫狗识别/evaluateCatOrDog.py

欢迎star。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对三水点靠木的支持。如果你想了解更多相关内容请查看下面相关链接

Python 相关文章推荐
python实现根据月份和日期得到星座的方法
Mar 27 Python
Python实现获取操作系统版本信息方法
Apr 08 Python
Python的SQLAlchemy框架使用入门
Apr 29 Python
十条建议帮你提高Python编程效率
Feb 16 Python
Python中的字符串替换操作示例
Jun 27 Python
python对DICOM图像的读取方法详解
Jul 17 Python
python写入并获取剪切板内容的实例
May 31 Python
python实现简单http服务器功能
Sep 17 Python
python http基本验证方法
Dec 26 Python
python爬虫爬取笔趣网小说网站过程图解
Nov 18 Python
Scrapy项目实战之爬取某社区用户详情
Sep 17 Python
Python使用socket_TCP实现小文件下载功能
Oct 09 Python
Python通过TensorFlow卷积神经网络实现猫狗识别
Mar 14 #Python
python3实现钉钉消息推送的方法示例
Mar 14 #Python
详解Python做一个名片管理系统
Mar 14 #Python
在Python中使用Neo4j的方法
Mar 14 #Python
浅谈Python中eval的强大与危害
Mar 13 #Python
详解python中init方法和随机数方法
Mar 13 #Python
Python使用sqlalchemy模块连接数据库操作示例
Mar 13 #Python
You might like
屏蔽浏览器缓存另类方法
2006/10/09 PHP
mayfish 数据入库验证代码
2010/04/30 PHP
php采集时被封ip的解决方法
2010/08/29 PHP
Drupal7 form表单二次开发要点与实例
2014/03/02 PHP
PHP快速按行读取CSV大文件的封装类分享(也适用于其它超大文本文件)
2014/04/10 PHP
PHP函数eval()介绍和使用示例
2014/08/20 PHP
PHP经典设计模式之依赖注入定义与用法详解
2019/05/21 PHP
基于jQuery的图片剪切插件
2011/08/03 Javascript
Javascript 异步加载详解(浏览器在javascript的加载方式)
2012/05/20 Javascript
分析Node.js connect ECONNREFUSED错误
2013/04/09 Javascript
基于jQuery创建鼠标悬停效果的方法
2015/03/07 Javascript
基于bootstrap实现广告轮播带图片和文字效果
2016/07/22 Javascript
jQuery ztree实现动态树形多选菜单
2016/08/12 Javascript
jquery利用json实现页面之间传值的实例解析
2016/12/12 Javascript
详解js中常规日期格式处理、月历渲染和倒计时函数
2016/12/28 Javascript
Vue项目webpack打包部署到服务器的实例详解
2017/07/17 Javascript
angular 实时监听input框value值的变化触发函数方法
2018/08/31 Javascript
JQuery事件冒泡和默认行为代码实例
2020/05/13 jQuery
基于openlayers实现角度测量功能
2020/09/28 Javascript
DJANGO-ALLAUTH社交用户系统的安装配置
2014/11/18 Python
详解Python多线程Selenium跨浏览器测试
2017/04/01 Python
django 通过ajax完成邮箱用户注册、激活账号的方法
2018/04/17 Python
PyQt5如何将.ui文件转换为.py文件的实例代码
2020/05/26 Python
Selenium 安装和简单使用的实现
2020/12/04 Python
python3中celery异步框架简单使用+守护进程方式启动
2021/01/20 Python
详解CSS3阴影 box-shadow的使用和技巧总结
2016/12/03 HTML / CSS
参观接待方案
2014/03/17 职场文书
化学教育专业自荐信
2014/07/04 职场文书
党的群众路线调研报告
2014/11/03 职场文书
付款承诺函范文
2015/01/21 职场文书
保管员岗位职责
2015/02/14 职场文书
2015毕业生实习期工作总结
2015/04/09 职场文书
安全生产警示教育活动总结
2015/05/09 职场文书
导游词之黄帝陵景区
2019/09/16 职场文书
Redis中缓存穿透/击穿/雪崩问题和解决方法
2021/12/04 Redis
一文简单了解MySQL前缀索引
2022/04/03 MySQL