Neural_Speed_Reading_via_Skim-RNN_PyTorch icon indicating copy to clipboard operation
Neural_Speed_Reading_via_Skim-RNN_PyTorch copied to clipboard

Typo in copying of cell-state?

Open leox1v opened this issue 5 years ago • 0 comments

c_tilde = torch.transpose(torch.stack( [c_l_, torch.cat([c_s[:, :self.small_cell_size], c_l_[:, self.small_cell_size:self.large_cell_size]], dim=1) ], dim=2), 1, 2)

Shouldn't it be c_l[:, ...] here instead of c_l_[:, ...]? The way it is right now it seems like you're using the large cell every time. Or am I missing something?

leox1v avatar Jan 24 '20 09:01 leox1v