zoukankan      html  css  js  c++  java
  • 吴裕雄 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))

  • 相关阅读:
    其他魔术方法
    类型约束和类的魔术常量
    PHP对象遍历、内置标准类与数据转对象
    类的自动加载与对象的克隆
    PHP重载与接口
    面向对象
    PHP基础
    地下城与勇士的项目整理
    mysql建表
    jQuery
  • 原文地址:https://www.cnblogs.com/tszr/p/10875157.html
Copyright © 2011-2022 走看看