hello, everyone, I found it is hard to get the d dimension right, any one can help me with that?
(2, 5)
ValueError Traceback (most recent call last)
in
1 t_X, parameters = forward_propagation_with_dropout_test_case()
2
----> 3 A3, cache = forward_propagation_with_dropout(t_X, parameters, keep_prob=0.7)
4 print ("A3 = " + str(A3))
5
in forward_propagation_with_dropout(X, parameters, keep_prob)
[Removed solution code]
—> 45 A1 = A1 * D1
ValueError: operands could not be broadcast together with shapes (2,5) (3,5)