Hi there,
I am having trouble with Exercise 4. Even though my code for Ex3 gets passed, I keep getting a ValueError referring to lstm_cell_forward function.
The Error: ValueError: operands could not be broadcast together with shapes (5,10) (10,10)
and references to this line:
in lstm_cell_forward(xt, a_prev, c_prev, parameters)
56 it = sigmoid(np.dot(Wi, concat) + bi)
57 cct = np.tanh(np.dot(Wc, concat) + bc)
—> 58 c_next = np.multiply(ft, c_prev) + np.multiply(it, cct)
Can anyone help me identify my mistake?