Permute(dims)置换输入的维度。
dims: 整数元组。
model = Sequential()
model.add(Permute((2, 1), input_shape=(10, 64)))
# now: model.output_shape == (None, 64, 10)
# note: `None` is the batch dimension
输入shape
任意,当使用激活层作为第一层时,要指定input_shape
输出shape
与输入相同,但是其维度按照指定的模式重新排列