tf.sort

View source on GitHub

Sorts a tensor.

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:

Returns:

A Tensor with the same dtype and shape as values, with the elements sorted along the given axis.

Raises: