生成與分段對應的 RaggedTensor row_splits
。
用法
tf.ragged.segment_ids_to_row_splits(
segment_ids, num_segments=None, out_type=None, name=None
)
參數
-
segment_ids
一維整數張量。 -
num_segments
一個標量整數,指示段數。默認為max(segment_ids) + 1
(如果segment_ids
為空,則為零)。 -
out_type
返回值的 dtype。默認為segment_ids.dtype
或tf.int64
如果segment_ids
沒有數據類型。 -
name
返回張量的名稱前綴(可選)。
返回
-
排序後的一維整數張量,帶有
shape=[num_segments + 1]
。
返回一個整數向量 splits
,其中 splits[0] = 0
和 splits[i] = splits[i-1] + count(segment_ids==i)
。例子:
print(tf.ragged.segment_ids_to_row_splits([0, 0, 0, 2, 2, 3, 4, 4, 4]))
tf.Tensor([0 3 3 5 6 9], shape=(6,), dtype=int64)
相關用法
- Python tf.ragged.stack_dynamic_partitions用法及代碼示例
- Python tf.ragged.stack用法及代碼示例
- Python tf.ragged.cross用法及代碼示例
- Python tf.ragged.boolean_mask用法及代碼示例
- Python tf.ragged.map_flat_values用法及代碼示例
- Python tf.ragged.range用法及代碼示例
- Python tf.ragged.row_splits_to_segment_ids用法及代碼示例
- Python tf.ragged.cross_hashed用法及代碼示例
- Python tf.ragged.constant用法及代碼示例
- Python tf.raw_ops.TPUReplicatedInput用法及代碼示例
- Python tf.raw_ops.Bitcast用法及代碼示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代碼示例
- Python tf.raw_ops.BatchMatMul用法及代碼示例
- Python tf.raw_ops.OneHot用法及代碼示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代碼示例
- Python tf.raw_ops.ReadVariableXlaSplitND用法及代碼示例
- Python tf.raw_ops.GatherV2用法及代碼示例
- Python tf.raw_ops.Expm1用法及代碼示例
- Python tf.range用法及代碼示例
- Python tf.raw_ops.BitwiseAnd用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.ragged.segment_ids_to_row_splits。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。