_flip
flip
¶
Reverse the order of a given tensor
elements along a given axis.
This method can be used with Numpy data:
n = np.array([[[0, 1], [2, 3]], [[4, 5], [6, 7]], [[8, 9], [10, 11]]])
b = fe.backend.flip(n,axis = [0]) # [[[8, 9], [10, 11]], [[4, 5], [6, 7]], [[0, 1], [2, 3]]]
b = fe.backend.flip(n,axis = [0,1]) # [[[10, 11],[8, 9]], [[6, 7], [4, 5]], [[2, 3], [0, 1]]]
This method can be used with TensorFlow tensors:
t = tf.constant([[[0, 1], [2, 3]], [[4, 5], [6, 7]], [[8, 9], [10, 11]]])
b = fe.backend.flip(t,axis = [0]) # [[[8, 9], [10, 11]], [[4, 5], [6, 7]], [[0, 1], [2, 3]]]
b = fe.backend.flip(t,axis = [0,1]) # [[[10, 11],[8, 9]], [[6, 7], [4, 5]], [[2, 3], [0, 1]]]
This method can be used with PyTorch tensors:
p = torch.tensor([[[0, 1], [2, 3]], [[4, 5], [6, 7]], [[8, 9], [10, 11]]])
b = fe.backend.flip(p,axis = [0]) # [[[8, 9], [10, 11]], [[4, 5], [6, 7]], [[0, 1], [2, 3]]]
b = fe.backend.flip(p,axis = [0,1]) # [[[10, 11],[8, 9]], [[6, 7], [4, 5]], [[2, 3], [0, 1]]]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tensor |
Tensor
|
The tensor to flip. |
required |
axis |
List[int]
|
The new axis order to be used. Should be a list containing all integers in range [0, tensor.ndim). |
required |
Returns:
Type | Description |
---|---|
Tensor
|
The |
Raises:
Type | Description |
---|---|
ValueError
|
If |