I am getting error :
There is a mistake in the backward propagation! difference = 0.9999999999999866
AssertionError Traceback (most recent call last)
in
6 expected_values = [0.2850931567761623, 1.1890913024229996e-07]
7 assert not(type(difference) == np.ndarray), “You are not using np.linalg.norm for numerator or denominator”
----> 8 assert np.any(np.isclose(difference, expected_values)), “Wrong value. It is not one of the expected values”
AssertionError: Wrong value. It is not one of the expected values
After printing my values are 4.761422807917733, 4.761422807917797, 0.9999999999999866 of numerator ,denominator , difference respectively can some one help .
I am also getting difference error in Exercise 3 my previous test all are passed