當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。