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


Python tf.nest.is_nested用法及代码示例


如果其输入是嵌套结构,则返回 true。

用法

tf.nest.is_nested(
    seq
)

参数

  • seq 要测试的值。

返回

  • 如果输入是嵌套结构,则为真。

有关嵌套结构的定义,请参阅tf.nest

例如:

tf.nest.is_nested("1234")
    False
  tf.nest.is_nested([1, 3, [4, 5]])
    True
  tf.nest.is_nested(((7, 8), (5, 6)))
    True
  tf.nest.is_nested([])
    True
  tf.nest.is_nested({"a":1, "b":2})
    True
  tf.nest.is_nested({"a":1, "b":2}.keys())
    True
  tf.nest.is_nested({"a":1, "b":2}.values())
    True
  tf.nest.is_nested({"a":1, "b":2}.items())
    True
  tf.nest.is_nested(set([1, 2]))
    False
  ones = tf.ones([2, 3])
  tf.nest.is_nested(ones)
    False

相关用法


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