Hello DL AI,
I am receiving an assert error on exercise 3 - on attachement. The output matches the expected output and I did not modify the assert
code ?
Please let me know how to resolve…
– Germán
Hello DL AI,
I am receiving an assert error on exercise 3 - on attachement. The output matches the expected output and I did not modify the assert
Please let me know how to resolve…
– Germán
Hello @dlphsrle7
The assert is looking at the shape of W and b. It is expecting the shape of W to be equal to (n_y, n_x) and that of b to be equal to (n_y,1)
If the asserion is failing it means your shape of W and/or b is wrong.
You will need to correct it.
Hi, How did you solve this problem, can you guide me too??
Hello Syed,
Yes… please look carefully at the instructions for the inputs / output - just below the def statement and make certain that it matches exactly the code segments you are writing… specifically in relation to the n_x, n_y…
– Germán
@dlphsrle7 , could you please help me too and point to where I might have it wrong?
Hello @frittmeyer,
Please look carefully at the instructions in red above the ## Start Code. and make certain that the shape of the matrices match your code…
– Germán
Thank you, German. Will try it again.