when performing the first step of the LSTM_cell, I seem to be stuck between two errors.
How do I input x into the cell?
Please give more details about what part of the assignment is trigging this error. I cannot tell from your image.
sorry, this is the music inference model exercise, step 2.A perform one step of lstm_cell.
The two parameters you pass to LSTM_cell() are:
- x
- initial_state = [ ]
You have to put the correct variables into the initial_state list, separated by a comma.