Tensorflow学习(练习)—下载骨骼图像识别网络inception数据集
Posted herd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tensorflow学习(练习)—下载骨骼图像识别网络inception数据集相关的知识,希望对你有一定的参考价值。
import tensorflow as tf
import os
import tarfile
import requests
#inception模型下载地址
inception_pretrain_model_url = ‘http://download.tensorflow.org/models/image/imagenet/inception-2015-12-05.tgz‘
#模型存放地址
inception_pretrain_model_dir = "inception_model"
if not os.path.exists(inception_pretrain_model_dir):
os.makedirs(inception_pretrain_model_dir)
#获取文件名,以及文件路径
filename = inception_pretrain_model_url.split(‘/‘)[-1]
filepath = os.path.join(inception_pretrain_model_dir, filename)
#下载模型
if not os.path.exists(filepath):
print("download: ", filename)
r = requests.get(inception_pretrain_model_url, stream=True)
with open(filepath, ‘wb‘) as f:
for chunk in r.iter_content(chunk_size=1024):
if chunk:
f.write(chunk)
print("finish: ", filename)
#解压文件
tarfile.open(filepath, ‘r:gz‘).extractall(inception_pretrain_model_dir)
#模型结构存放文件
log_dir = ‘inception_log‘
if not os.path.exists(log_dir):
os.makedirs(log_dir)
#classify_image_graph_def.pb为google训练好的模型
inception_graph_def_file = os.path.join(inception_pretrain_model_dir, ‘classify_image_graph_def.pb‘)
with tf.Session() as sess:
#创建一个图来存放google训练好的模型
with tf.gfile.FastGFile(inception_graph_def_file, ‘rb‘) as f:
graph_def = tf.GraphDef()
graph_def.ParseFromString(f.read())
tf.import_graph_def(graph_def, name=‘‘)
#保存图的结构
writer = tf.summary.FileWriter(log_dir, sess.graph)
writer.close()
##################运行结果
download: inception-2015-12-05.tgz finish: inception-2015-12-05.tgz
以上是关于Tensorflow学习(练习)—下载骨骼图像识别网络inception数据集的主要内容,如果未能解决你的问题,请参考以下文章
《21个项目玩转深度学习:基于TensorFlow的实践详解》高清带标签PDF版本学习下载
Openpose+Tensorflow 这样实现人体姿态估计 | 代码干货
TensorFlow(十四):谷歌图像识别网络inception-v3下载与查看结构
利用深度学习框架Tensorflow做图像识别(基于阿里云PAI)
新书深度学习图像识别技术:基于TensorFlow Object Detection API和OpenVINO™ 工具套件