tf.ragged_fill_empty_rows(
value_rowids: Annotated[Any, _atypes.Int64],
values: Annotated[Any, TV_RaggedFillEmptyRows_T],
nrows: Annotated[Any, _atypes.Int64],
default_value: Annotated[Any, TV_RaggedFillEmptyRows_T],
name=None
)
Args |
value_rowids
|
A Tensor of type int64 .
|
values
|
A Tensor .
|
nrows
|
A Tensor of type int64 .
|
default_value
|
A Tensor . Must have the same type as values .
|
name
|
A name for the operation (optional).
|
Returns |
A tuple of Tensor objects (output_value_rowids, output_values, empty_row_indicator, reverse_index_map).
|
output_value_rowids
|
A Tensor of type int64 .
|
output_values
|
A Tensor . Has the same type as values .
|
empty_row_indicator
|
A Tensor of type bool .
|
reverse_index_map
|
A Tensor of type int64 .
|