用法
to_tensor(
default_value=None, name=None, shape=None
)
参数
-
default_value
为self
中未指定的索引设置的值。默认为零。default_value
必须可广播到self.shape[self.ragged_rank + 1:]
。 -
name
返回张量的名称前缀(可选)。 -
shape
产生的稠密张量的形状。特别是,result.shape[i]
是shape[i]
(如果shape[i]
不是 None),或self.bounding_shape(i)
(否则)。shape.rank
必须是None
或等于self.rank
。
返回
- A Tensor with shape ragged.bounding_shape(self) and the values specified by the non-empty values in self. Empty values are assigned default_value.
将此 RaggedTensor
转换为 tf.Tensor
。
如果指定了shape
,则将结果填充和/或截断为指定的形状。
例子:
rt = tf.ragged.constant([[9, 8, 7], [], [6, 5], [4]])
print(rt.to_tensor())
tf.Tensor(
[[9 8 7] [0 0 0] [6 5 0] [4 0 0]], shape=(4, 3), dtype=int32)
print(rt.to_tensor(shape=[5, 2]))
tf.Tensor(
[[9 8] [0 0] [6 5] [4 0] [0 0]], shape=(5, 2), dtype=int32)
相关用法
- Python tf.RaggedTensor.to_sparse用法及代码示例
- Python tf.RaggedTensor.row_lengths用法及代码示例
- Python tf.RaggedTensor.__rmul__用法及代码示例
- Python tf.RaggedTensor.from_uniform_row_length用法及代码示例
- Python tf.RaggedTensor.__radd__用法及代码示例
- Python tf.RaggedTensor.__pow__用法及代码示例
- Python tf.RaggedTensor.__rand__用法及代码示例
- Python tf.RaggedTensor.numpy用法及代码示例
- Python tf.RaggedTensor.get_shape用法及代码示例
- Python tf.RaggedTensor.__xor__用法及代码示例
- Python tf.RaggedTensor.__gt__用法及代码示例
- Python tf.RaggedTensor.__getitem__用法及代码示例
- Python tf.RaggedTensor.__rpow__用法及代码示例
- Python tf.RaggedTensor.row_limits用法及代码示例
- Python tf.RaggedTensor.nested_value_rowids用法及代码示例
- Python tf.RaggedTensor.__rxor__用法及代码示例
- Python tf.RaggedTensor.from_value_rowids用法及代码示例
- Python tf.RaggedTensor.from_nested_row_lengths用法及代码示例
- Python tf.RaggedTensor.__ror__用法及代码示例
- Python tf.RaggedTensor.__rsub__用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.RaggedTensor.to_tensor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。