当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.Graph.get_name_scope用法及代码示例


用法

get_name_scope()

返回

  • 表示当前名称范围的字符串。

返回当前名称范围。

例如:

with tf.name_scope('scope1'):
  with tf.name_scope('scope2'):
    print(tf.compat.v1.get_default_graph().get_name_scope())

将打印字符串 scope1/scope2

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.Graph.get_name_scope。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。