tf.keras.ops.segment_max  |  TensorFlow v2.16.1 (original) (raw)

tf.keras.ops.segment_max

Computes the max of segments in a tensor.

tf.keras.ops.segment_max(
    data, segment_ids, num_segments=None, sorted=False
)
Args
data Input tensor.
segment_ids A 1-D tensor containing segment indices for each element in data.
num_segments An integer representing the total number of segments. If not specified, it is inferred from the maximum value in segment_ids.
sorted A boolean indicating whether segment_ids is sorted. Defaults toFalse.
Returns
A tensor containing the max of segments, where each element represents the max of the corresponding segment in data.

Example:

data = keras.ops.convert_to_tensor([1, 2, 10, 20, 100, 200]) segment_ids = keras.ops.convert_to_tensor([0, 0, 1, 1, 2, 2]) num_segments = 3 keras.ops.segment_max(data, segment_ids, num_segments) array([2, 20, 200], dtype=int32)

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.

Last updated 2024-06-07 UTC.