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
When Initializing LSTM Model in main.py : model_lstm = ConvLSTM(input_dim=1, hidden_dims=[1,1,1], kernel_size=(3, 3), num_layers=3, alpha=0.5)
The model doesn't work if hidden_dims are anything except [1,1,1] when num_layers=3
When Initializing LSTM Model in
main.py
:model_lstm = ConvLSTM(input_dim=1, hidden_dims=[1,1,1], kernel_size=(3, 3), num_layers=3, alpha=0.5)
The model doesn't work if
hidden_dims
are anything except[1,1,1]
whennum_layers=3
Possible Source of Error :
__init__
of ClassConvLSTMCell
oflstm_model.py
init_hidden
andforward
of ClassConvLSTM
oflstm_model.py
The text was updated successfully, but these errors were encountered: