I am working on the conv_forward function where we are supposed to initialize the output volume Z with 0s.
I tried initializing Z with np.zeros and using the dimensions of (m, n_H, n_W, n_C). Yielded an Assertion Error of “Wrong shape. Don’t hard code the pad and stride values in the function”
I am just confused about where the dimensions come from for Z.
I’m sorry if this has been answered already. I am finding Discourse not very easy to search, especially since most of the threads consist of “I had this problem, no wait I fixed it”.
Thanks for any help you can give me. I’ll go back to my code now and hopefully have an epiphany.