Hi,
On the last part of the function it asks to convole the 3D spliced with the correct filter of W and B with this snippet:
# Use the corners to define the (3D) slice of a_prev_pad (See Hint above the cell). (≈1 line)
# a_slice_prev = None
# Convolve the (3D) slice with the correct filter W and bias b, to get back one output neuron. (≈3 line)
# weights = None
# biases = None
# Z[i, h, w, c] = None
I know I have to use the single step convolution function coded previously in the notebook, but I don’t really understand what to do with the weights and biases portion of the code. Do I have use W[…] where the blank is what is needed to fill in?