ConvLSTM_pytorch icon indicating copy to clipboard operation
ConvLSTM_pytorch copied to clipboard

Implementation of Convolutional LSTM in PyTorch.

Results 19 ConvLSTM_pytorch issues
Sort by recently updated
recently updated
newest added

Hello! Is there any examples how to run training on 3 channels frames sequence?

I saw that in the code, hidden_state is not implemented: ``` def forward(self, input_tensor, hidden_state=None): """ Parameters ---------- input_tensor: todo 5-D Tensor either of shape (t, b, c, h, w)...

when i build my model with convlstm in the function `def forward(self, x):` ` summary[m_key]["input_shape"] = list(input[0].size())` in torchsummary.py the input is empty tuple, so the program error with '{IndexError}tuple...

how can we implement options for valid padding and using custom strides, where are changes required?

sorry, i didn't really understand conLSTM when i use keras layers ConvLSTM2D(filters = 128, kernel_size=(3, 3), padding='same', return_sequences = False, go_backwards = True,kernel_initializer = 'he_normal' ),such as input shape is...

model = ConvLSTM(input_dim=channels, hidden_dim=[64, 64, 128], kernel_size=(3, 3), num_layers=3, batch_first=True[missing comma here] bias=True, return_all_layers=False)

Hey, I am trying to integrate your convLSTM cell into an existing model I have. I did this in the following way: def forward(self,x): out = my_model(x) out = out.unsqueeze(1)...

Hello I am trying to reproduce the results of the paper in moving Mnist. I developed my own implementation but it didnt converge. Now I will try with your proposed...

fixed: hidden_state != None; changed: last_state_list