C4W1 - Exercise 2 - conv_single_step

Hi every one.
I got these message after excutting my code of Exercise 2 - conv_single_step of C4W1

assert (type(Z) == np.float64), “You must cast the output to numpy float 64”
assert np.isclose(Z, -6.999089450680221), “Wrong value”
Z = -6.999089450680221
All tests passed!

I could correct these messages
Does it pass all the tests or not?

It is just showing you that it executed those “assert” statements. Trust me, you’ll know if any of the asserts “throws”. If it gets to the last step without any of them “throwing” and it says “all tests passed”, then you are ok.

2 Likes