Permute
classkeras.layers.Permute(dims, **kwargs)
Permutes the dimensions of the input according to a given pattern.
Useful e.g. connecting RNNs and convnets.
Arguments
(1, 3, 2)
permutes the second and third dimensions
of the input.Input shape
Arbitrary.
Output shape
Same as the input shape, but with the dimensions re-ordered according to the specified pattern.
Example
>>> x = keras.Input(shape=(10, 64))
>>> y = keras.layers.Permute((2, 1))(x)
>>> y.shape
(None, 64, 10)