当前位置: 代码迷 >> 综合 >> 使用深度学习(tensorflow)识别动物的简单案例(vgg16)包含数据集及代码——0基础版
  详细解决方案

使用深度学习(tensorflow)识别动物的简单案例(vgg16)包含数据集及代码——0基础版

热度:46   发布时间:2024-01-12 22:35:30.0

1.Tensorflow 版本

tensorflow的版本是1.12.0
如何安装tensorflow1.12.0?首先使用conda创建python版本为3.6的虚拟环境,然后再在虚拟环境中使用命令conda install tensorflow==1.12.0安装tensorflow 1.12.0版本。具体过程请百度。

2.VGG16模型权重数据集下载

链接:https://pan.baidu.com/s/1OBQUWafOF8LYY73-sW7SUw
提取码:xcmp

下载后的数据移动至目录:C:\Users\Administrator\.keras\models(不同机器目录可能不同)
在这里插入图片描述

3.实现

from tensorflow.python.keras.applications.vgg16 import VGG16, preprocess_input, decode_predictions
from tensorflow.python.keras.preprocessing.image import load_img, img_to_arraydef predict():model = VGG16()# print(model.summary())# !!!记得修改图片路径image = load_img("./image/i5.jpg", target_size=(224, 224))image = img_to_array(image)# 输入卷积中需要4维结构image = image.reshape((1, image.shape[0], image.shape[1], image.shape[2]))print("形状:", image.shape)# 预测之前做图片的数据处理,归一化处理等image = preprocess_input(image)y_predictions = model.predict(image)# 对结果进行解码,按照降序排序结果label = decode_predictions(y_predictions)print("预测的类别是:%s, 其概率为:%f" % (label[0][0][1], label[0][0][2]))# 预测一张图的类别if __name__ == '__main__':predict()

在这里插入图片描述

  相关解决方案