吴裕雄 python 神经网络——TensorFlow pb文件保存方法

Posted tszr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了吴裕雄 python 神经网络——TensorFlow pb文件保存方法相关的知识,希望对你有一定的参考价值。

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

v1 = tf.Variable(tf.constant(1.0, shape=[1]), name = "v1")
v2 = tf.Variable(tf.constant(2.0, shape=[1]), name = "v2")
result = v1 + v2

init_op = tf.global_variables_initializer()
with tf.Session() as sess:
    sess.run(init_op)
    graph_def = tf.get_default_graph().as_graph_def()
    output_graph_def = graph_util.convert_variables_to_constants(sess, graph_def, [add])
    with tf.gfile.GFile("E:\\\\Saved_model\\\\combined_model.pb", "wb") as f:
           f.write(output_graph_def.SerializeToString())

技术图片

from tensorflow.python.platform import gfile

with tf.Session() as sess:
    model_filename = "E:\\\\Saved_model\\\\combined_model.pb"
   
    with gfile.FastGFile(model_filename, rb) as f:
        graph_def = tf.GraphDef()
        graph_def.ParseFromString(f.read())
    result = tf.import_graph_def(graph_def, return_elements=["add:0"])
    print(sess.run(result))

技术图片

 

以上是关于吴裕雄 python 神经网络——TensorFlow pb文件保存方法的主要内容,如果未能解决你的问题,请参考以下文章

吴裕雄 python 神经网络——TensorFlow 输入文件队列

吴裕雄 python 机器学习——人工神经网络感知机学习算法的应用

吴裕雄 python 神经网络——TensorFlow 队列操作

吴裕雄 python 神经网络——TensorFlow 数据集高层操作

吴裕雄 python 神经网络——TensorFlow pb文件保存方法

吴裕雄 python 神经网络——TensorFlow 多线程队列操作