您的位置:首页 > 编程语言 > Go语言

Tensorflow加载goodle的inception-v3模型

2018-03-01 23:04 435 查看
import tensorflow as tf
import os
import tarfile
import requests

# inception模型下载地址
inception_pretrain_module_url = 'http://download.tensorflow.org/models/image/imagenet/inception-2015-12-05.tgz'

# 模型存储地址
inception_pretrain_module_dir = 'inception_model'
if not os.path.exists(inception_pretrain_module_dir):
os.mkdir(inception_pretrain_module_dir)

# 获取文件名,以及文件路径
filename = inception_pretrain_module_url.split('/')[-1]
filepath = os.path.join(inception_pretrain_module_dir, filename)

# 下载模型
if not os.path.exists(filepath):
print('download', filename)
r = requests.get(inception_pretrain_module_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_module_dir)

# 模型结构存放文件
log_dir = 'inception_log'
if not os.path.exists(log_dir):
os.mkdir(log_dir)

# classify_image_graph_def.pb为Google训练好的模型
inception_graph_def_file = os.path.join(inception_pretrain_module_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()


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐