conv_forward function passed second test but failed first test. Don’t know how to fix it
Please click my name and message your notebook as an attachment.
Here are some hints:
- Use
stride
when computingvert_start
andhoriz_start
. Thinking about the number of steps the filter should move after every step will help. - Calculations for
vert_end
andhoriz_end
requires rework. For example, ifhoriz_start = 2
andf=4
,horiz_end=6
. Use similar line of reasoning forvert_end
.