hehefan / PointRNN-PyTorch

PointRNN, PointGRU and PointLSTM.
MIT License
55 stars 6 forks source link

How is the hidden state of encoder being used in decoder? #2

Closed Jagyan closed 3 years ago

Jagyan commented 3 years ago

Hi, I am implementing the pytorch version of Pointlstm for nuscenes data. I have a question regarding the encoder decoder structure. As mentioned in the architecture, the state from the encoder is supposed to be used in the decoder. But looking at the code, I am unable to find out where that is happening as I see the state from the last encoder cell, states3 is not being used anywhere in the decoder cells. Thank you.

Jagyan commented 3 years ago

I figured out how it is happening. Sorry to bother you.