如果其输入是嵌套结构,则返回 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
相关用法
- Python tf.nest.assert_same_structure用法及代码示例
- Python tf.nest.map_structure用法及代码示例
- Python tf.nest.flatten用法及代码示例
- Python tf.nest.pack_sequence_as用法及代码示例
- Python tf.nn.embedding_lookup_sparse用法及代码示例
- Python tf.nn.RNNCellResidualWrapper.set_weights用法及代码示例
- Python tf.nn.dropout用法及代码示例
- Python tf.nn.gelu用法及代码示例
- Python tf.nn.RNNCellDeviceWrapper.set_weights用法及代码示例
- Python tf.no_gradient用法及代码示例
- Python tf.nn.embedding_lookup用法及代码示例
- Python tf.numpy_function用法及代码示例
- Python tf.nn.RNNCellDeviceWrapper.get_weights用法及代码示例
- Python tf.nn.local_response_normalization用法及代码示例
- Python tf.nn.scale_regularization_loss用法及代码示例
- Python tf.nn.RNNCellResidualWrapper.add_loss用法及代码示例
- Python tf.nn.max_pool用法及代码示例
- Python tf.nn.RNNCellDropoutWrapper.set_weights用法及代码示例
- Python tf.nn.l2_loss用法及代码示例
- Python tf.nn.log_softmax用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.nest.is_nested。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。