系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 脚本中心 > python > 详细页面

TensorFlow查看输入节点和输出节点名称方式

时间:2020-01-04来源:系统城作者:电脑系统城

TensorFlow 定义输入节点名称input_name:


 
  1. with tf.name_scope('input'):
  2. bottleneck_input = tf.placeholder_with_default(
  3. bottleneck_tensor,
  4. shape=[batch_size, bottleneck_tensor_size],
  5. name='Mul')

TensorFlow查看pb数据库里面的输入节点和输出节点:


 
  1. import tensorflow as tf
  2. import os
  3.  
  4. model_dir = './tmp/'
  5. model_name = 'output_graph.pb'
  6.  
  7. def create_graph():
  8. with tf.gfile.FastGFile(os.path.join(
  9. model_dir, model_name), 'rb') as f:
  10. graph_def = tf.GraphDef()
  11. graph_def.ParseFromString(f.read())
  12. tf.import_graph_def(graph_def, name='')
  13.  
  14. create_graph()
  15. tensor_name_list = [tensor.name for tensor in tf.get_default_graph().as_graph_def().node]
  16. for tensor_name in tensor_name_list:
  17. print(tensor_name,'\n')

以上这篇TensorFlow查看输入节点和输出节点名称方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载