How to implemanted 2DLSTM?

How to implemanted 2DLSTM using tensorflow?

Hi @vishalthengane, I suspect you mean “Bidirectional LSTM”:

rnn.LSTM(num_hiddens, num_layers, bidirectional=True)

Please the RNN chapter for more details.

I am building a multidimensional RNN described in this paper, and I didn’t find good 2DLSTM (MDLSTM) implementation.