python 从冷冻模型到张量板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 从冷冻模型到张量板相关的知识,希望对你有一定的参考价值。

import tensorflow as tf
from tensorflow.python.platform import gfile
with tf.Session() as sess:
    model_filename ='frozen_inference_graph.pb'
    with gfile.FastGFile(model_filename, 'rb') as f:
        graph_def = tf.GraphDef()
        graph_def.ParseFromString(f.read())
        g_in = tf.import_graph_def(graph_def)
LOGDIR='<LOG_OUTPUT_DIR>'
train_writer = tf.summary.FileWriter(LOGDIR)
train_writer.add_graph(sess.graph)

以上是关于python 从冷冻模型到张量板的主要内容,如果未能解决你的问题,请参考以下文章

sh 从tensorflow冷冻模型到tensorflow lite

用 pytorch 闪电组织张量板图

张量板中的线图

使用张量板查找 DNNRegressor 的准确性

为啥张量板图弯曲得很奇怪?

有啥方法可以查看张量板图中的参数总数?