用法
@classmethod
from_value_rowids(
values, value_rowids, nrows=None, name=None, validate=True
)
参数
-
values
形状可能参差不齐的张量[nvals, ...]
。 -
value_rowids
形状为[nvals]
的一维整数张量,对应于 one-to-one 和values
,并指定每个值的行索引。必须是非负数,并且必须按升序排序。 -
nrows
指定行数的整数标量。如果RaggedTensor
可能包含空的训练行,则应指定此项。必须大于value_rowids[-1]
(如果value_rowids
为空,则为零)。默认为value_rowids[-1] + 1
(如果value_rowids
为空,则为零)。 -
name
RaggedTensor 的名称前缀(可选)。 -
validate
如果为真,则使用断言检查参数是否形成有效的RaggedTensor
。注意:这些断言会产生运行时成本,因为必须检查每个张量值。
返回
-
一个
RaggedTensor
。result.rank = values.rank + 1
。result.ragged_rank = values.ragged_rank + 1
。
抛出
-
ValueError
如果nrows
与value_rowids
不兼容。
创建一个 RaggedTensor
,其中行由 value_rowids
分区。
返回的 RaggedTensor
对应于由以下定义的 python 列表:
result = [[values[i] for i in range(len(values)) if value_rowids[i] == row]
for row in range(nrows)]
例子:
print(tf.RaggedTensor.from_value_rowids(
values=[3, 1, 4, 1, 5, 9, 2, 6],
value_rowids=[0, 0, 0, 0, 2, 2, 2, 3],
nrows=5))
<tf.RaggedTensor [[3, 1, 4, 1], [], [5, 9, 2], [6], []]>
相关用法
- Python tf.RaggedTensor.from_uniform_row_length用法及代码示例
- Python tf.RaggedTensor.from_nested_row_lengths用法及代码示例
- Python tf.RaggedTensor.from_tensor用法及代码示例
- Python tf.RaggedTensor.from_row_limits用法及代码示例
- Python tf.RaggedTensor.from_nested_row_splits用法及代码示例
- Python tf.RaggedTensor.from_sparse用法及代码示例
- Python tf.RaggedTensor.from_row_splits用法及代码示例
- Python tf.RaggedTensor.from_row_starts用法及代码示例
- Python tf.RaggedTensor.from_nested_value_rowids用法及代码示例
- Python tf.RaggedTensor.from_row_lengths用法及代码示例
- Python tf.RaggedTensor.row_lengths用法及代码示例
- Python tf.RaggedTensor.__rmul__用法及代码示例
- 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__用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.RaggedTensor.from_value_rowids。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。