where am i doing wrong?
I have used the same padding and strides , as mentioned. still i am getting this error.
instructions followed are:
output:
File /tf/W2A1/public_tests.py:30, in identity_block_test(target)
27 assert np.all(A3np >= 0), "The ReLu activation at the last layer is missing"
28 resume = A3np[:,(0,-1),:,:].mean(axis = 3)
---> 30 assert np.floor(resume[1, 0, 0]) == 2 * np.floor(resume[1, 0, 3]), "Check the padding and strides"
31 assert np.floor(resume[1, 0, 3]) == np.floor(resume[1, 1, 0]), "Check the padding and strides"
32 assert np.floor(resume[1, 1, 0]) == 2 * np.floor(resume[1, 1, 3]), "Check the padding and strides"
AssertionError: Check the padding and strides