You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I was able to get similar results as the paper with the bias term added so I don't think it makes that much difference. To exactly match the official implementation, these linear layers should be implemented using group operations, For example, see https://github.com/anirudh9119/RIMs/blob/master/event_based/attention.py#L111.
In GroupLSTM cell, you have used GroupLinear as Linear Layer that does not use bias. Is there any reason that you choose not to use bias in grouped LSTMCells or grouped GRUCell ?
The linear layer adds bias term by default, however, in formula 4 of the paper, it is no bias term. Is this intended? Or should I use
The text was updated successfully, but these errors were encountered: