MDLSTM in Gluon

Hi,

Is there any example for the implementation of Multidimensional LSTMs (MDLSTM) in gluon?

If not please give me some suggestions on how to implement them from scratch.

Thanks,
Harathi

Not that I’m aware of. To implement MDLSTM yourself, take a look at implementation of LSTMCell. You should be able implement an MDLSTMCell similar to this implementation.

Thanks @Safrooze, i will try that