Hi,
I'm just wondering why you use this form in https://github.com/coreylynch/grid-lstm/blob/master/model/GridLSTM.lua#L31
local next_h = nn.CMulTable()({out_gate, nn.Tanh()(next_c)})
in the paper it is
local next_h = nn.Tanh()(nn.CMulTable()({out_gate, next_c}))
Thank you for your response