Aliases:
tf.contrib.framework.sorttf.sort
tf.sort(
values,
axis=-1,
direction='ASCENDING',
name=None
)
Defined in tensorflow/python/ops/sort_ops.py.
Sorts a tensor.
Args:
values: 1-D or higher numericTensor.axis: The axis along which to sort. The default is -1, which sorts the last axis.direction: The direction in which to sort the values ('ASCENDING'or'DESCENDING').name: Optional name for 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.