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
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?
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.