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


Python tf.RaggedTensor.get_shape用法及代码示例


用法

get_shape()

返回

  • TensorShape 包含这个不规则张量的静态已知形状。不规则尺寸的大小为 None

这个参差不齐的张量的静态已知形状。

shape 属性的别名。

例子:

tf.ragged.constant([[0], [1, 2]]).get_shape()
TensorShape([2, None])
tf.ragged.constant(
   [[[0, 1]], [[1, 2], [3, 4]]], ragged_rank=1).get_shape()
TensorShape([2, None, 2])

相关用法


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