Hi,
Could you please help me with the below error in 3.3 - Convolutional Neural Networks - Forward Pass.
ValueError: operands could not be broadcast together with shapes (3,3,4) (3,3,4,8)
Hi,
Could you please help me with the below error in 3.3 - Convolutional Neural Networks - Forward Pass.
ValueError: operands could not be broadcast together with shapes (3,3,4) (3,3,4,8)
You need to slice W and b by selecting only ācā as the final dimension.
Also, please edit your message to remove your code. That keeps you clear with the Honor Code.
Hi,
Thanks for the response. I written the below code.
weights = W[:,:,:,c]
biases = b[:,:,:,c]
I am getting the below error. Could you pleas help me out to fix it.
Error: Wrong output for variable in position 0.
2 Tests passed
1 Tests failed
I sorted myself. Required changes in function conv_single_step.
Thanks!!
Hey Lakshman, I seem to have the same error. Can you provide any hints as to what I might need to do, to solve this issue?