如何将 MultiRNNCell 与 cell=ConvLSTMCell 一起使用?

How can I use MultiRNNCell with cell= ConvLSTMCell?

如何使用 cell = ConvLSTMCell() 和 MultiRNNCell 在每层中使用不同数量的过滤器构建多层神经网络?

cell_1 = ConvLSTMCell(...params...)
cell_2 = ConvLSTMCell(...params...)

multi_cell = MultiRNNCell([cell_1, cell_2], ...other params...)

然后你可以使用 multi_cell 和所需参数调用 tensorflow dynamic_rnn(..) api。