may i ask any wrong with dWaa += dWaat ?
i didn’t get why this erroe happend
ValueError Traceback (most recent call last)
in
11 a_tmp, y_tmp, caches_tmp = rnn_forward(x_tmp, a0_tmp, parameters_tmp)
12 da_tmp = np.random.randn(5, 10, 4)
—> 13 gradients_tmp = rnn_backward(da_tmp, caches_tmp)
14
15 print(“gradients[“dx”][1][2] =”, gradients_tmp[“dx”][1][2])
in rnn_backward(da, caches)
45 dx[:, :, t] = dxt
46 dWax += dWaxt
—> 47 dWaa += dWaat
48 dba += dbat
49
ValueError: operands could not be broadcast together with shapes (5,5) (10,10) (5,5)