Hi there,
Am getting the following error for this programing assignment:
“ValueError: Layer lstm_2 expects 5 inputs, but it received 3 input tensors. Inputs received: [<tf.Tensor ‘input_15:0’ shape=(None, 1, 90) dtype=float32>, <tf.Tensor ‘a0_14:0’ shape=(None, 64) dtype=float32>, <tf.Tensor ‘c0_14:0’ shape=(None, 64) dtype=float32>]”.
Think it is referring to the following line of code in music_inference_model(LSTM_cell, densor, Ty=100):
“a, _, c = LSTM_cell(x, initial_state=[a, c])”
Any help?