Sorts a tensor.
Aliases:
tf.compat.v1.sorttf.compat.v2.sort
tf.sort(
values,
axis=-1,
direction='ASCENDING',
name=None
)
Usage:
import tensorflow as tf
a = [1, 10, 26.9, 2.8, 166.32, 62.3]
b = tf.sort(a,axis=-1,direction='ASCENDING',name=None)
c = tf.keras.backend.eval(b)
# Here, c = [ 1. 2.8 10. 26.9 62.3 166.32]
Args:
values: 1-D or higher numericTensor.axis: Theaxisalong which to sort. The default is -1, which sorts the lastaxis.direction: Thedirectionin which to sort thevalues('ASCENDING'or'DESCENDING').name: Optionalnamefor the operation.
Returns:
A Tensor with the same dtype and shape as values, with the elements sorted along the given axis.
Raises:
ValueError: If axis is not a constant scalar, or the direction is invalid.