tensorflow生成pb模型文件及加载pb文件预测

再进入正题前,我们先介绍一下checkpoint(ckpt)和pb的区别和联系

model保存方法结果文件加载
ckpttf.train.Saver()

主要的4个文件

checkpoint                  

model.ckpt.data-xxx  

model.ckpt.index     

model.ckpt.meta        

tf.train.Saver() saver.restore() 

pb
SerializeToString()函数序列化
pb文件见下文

pb模型文件具有语言独立性,可独立运行,封闭的序列化格式,支持其他语言解析,而且模型的变量都是固定的,模型的大小减小,一个模型文件也便于之后的使用。

tf生成pb文件

import tensorflow as tf
from tensorflow.python.framework import graph_util

with tf.Session(graph=tf.Graph()) as sess:
    # 定义输入变量名
    x = tf.placeholder(tf.int32, name='x')
    y = tf.placeholder(tf.int32, name='y')
    b = tf.Variable(1, name='b')
    xy = tf.multiply(x, y)
    # 输出,需要加上变量名
    output = tf.add(xy, b, name='output')

    sess.run(tf.global_variables_initializer())

    # convert_variables_to_constants 需要指定output_node_names
    constant_graph = graph_util.convert_variables_to_constants(sess, sess.graph_def, ['output'])

    print(sess.run(output, feed_dict={x: 2, y: 5}))

    # 写入序列化的pb文件
    with tf.gfile.FastGFile('model.pb', mode='wb') as f:
        f.write(constant_graph.SerializeToString())

tf加载pb文件

from tensorflow.python.platform import gfile

sess = tf.Session()
with gfile.FastGFile('model.pb', 'rb') as f:
    graph_def = tf.GraphDef()
    graph_def.ParseFromString(f.read())
    sess.graph.as_default()
    tf.import_graph_def(graph_def, name='')  # 导入计算图

# 需要有一个初始化的过程
sess.run(tf.global_variables_initializer())

# 输入
input_x = sess.graph.get_tensor_by_name('x:0')
input_y = sess.graph.get_tensor_by_name('y:0')

op = sess.graph.get_tensor_by_name('output:0')

res = sess.run(op, feed_dict={input_x: 5, input_y: 5})
print(res)

tips:应用到自己的程序中记得在输出添加变量名(如:output = tf.add(xy, b, name='output')),加载时获取输入输出变量名,将值传给输入变量,sess.run()即可

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值