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_array
def predict():
model = VGG16()
image = load_img("./image/i5.jpg", target_size=(224, 224))
image = img_to_array(image)
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()
|