Reverses a tf.Tensor along a specified axis.
tf.Tensor
Also available are stricter rank-specific methods that assert that x is of the given rank:
x
tf.reverse1d
tf.reverse2d
tf.reverse3d
tf.reverse4d
Except tf.reverse1d (which does not have axis param), all methods have same signature as this method.
const x = tf.tensor1d([1, 2, 3, 4]);x.reverse().print(); Copy
const x = tf.tensor1d([1, 2, 3, 4]);x.reverse().print();
const x = tf.tensor2d([1, 2, 3, 4], [2, 2]);const axis = 1;x.reverse(axis).print(); Copy
const x = tf.tensor2d([1, 2, 3, 4], [2, 2]);const axis = 1;x.reverse(axis).print();
The input tensor to be reversed.
Optional
The set of dimensions to reverse. Must be in the range [-rank(x), rank(x)). Defaults to all axes.
Generated using TypeDoc
Reverses a
tf.Tensor
along a specified axis.Also available are stricter rank-specific methods that assert that
x
is of the given rank:tf.reverse1d
tf.reverse2d
tf.reverse3d
tf.reverse4d
Except
tf.reverse1d
(which does not have axis param), all methods have same signature as this method.