Please click my name and message your notebook as an attachment.
Did you receive my notebook ?
Yes. Computation of vert_start
and horiz_start
are incorrect.
Thanks, I have found the error already.
I am also facing the same problem. Can you please tell me where I have make mistake?
Please click my name and message your notebook as an attachment.
@Adaramola_Samson
There are 2 mistakes in function conv_backward
:
-
dA_prev
should not be initialized with zeros of shape ofA
. Look at the entries ofcache
to pick the right element. - When setting the i^{th} training example’s
dA_prev
, there’s no need to index further intoda_prev_pad
. Remember thatda_prev_pad
was taken for the i^{th} training example
Thanks, i implement it & it worked. I appreciate