Hi,
the inputs I am giving to my lstm_cell are not as expected.
I have the following error :
ValueError: Layer lstm expects **5** inputs, but it received 3 input tensors.
I have check the shapes of my inputs and they are as follow :
x shape is (None, 1, 90)
a shape is (None, 64)
c shape is (None, 64)
finally, I noticed that each time I rerun the cell, the in between stars above increases.
I have read a few post about this and didn’t find a solution. How did you pass this one ?
Edouard