Permute
Swaps dimensions. This is a generalized version of a matrix transpose, because it allows you to swap many dimensions.
For example, to rotate an image 90 degrees, you should swap the width and height dimensions. If the input shape is (C, H, W), a <Dimensions> of (0, 2, 1) will swap the width and height dimensions.
By clicking the node the following parameters can be configured on the right panel:
- Dimensions: The swap order. A list of numbers. For example, given the input shape (A, B, C), and sawp order (2, 0, 1), the new shape will be (C, A, B).