如何查询TensorFlow模型中的所有输入和输出节点名称?
- 内容介绍
- 文章标签
- 相关推荐
本文共计150个文字,预计阅读时间需要1分钟。
TensorFlow中定义输入节点,使用`tf.name_scope`命名:`with tf.name_scope('input'): bottleneck_input=tf.placeholder_with_default(bottleneck_tensor, shape=[batch_size, bottleneck_tensor_size], name='Mul')`。
本文共计150个文字,预计阅读时间需要1分钟。
TensorFlow中定义输入节点,使用`tf.name_scope`命名:`with tf.name_scope('input'): bottleneck_input=tf.placeholder_with_default(bottleneck_tensor, shape=[batch_size, bottleneck_tensor_size], name='Mul')`。

