TensorFlow built-in permute module to use inside Sequential model

Hi,

Does TensorFlow have a built-in permute module that can be used within a Sequential model?
If not, is creating a custom permute class a good idea?

Thank you

Perhaps the Keras Permute layer will work for you?

1 Like

Hi @Nada-Nada, As @rcauvin said, Yes you can use the keras permute layer in the sequential model. please refer to this gist for code example. Thank You.

1 Like