Hello there,
I’ve got some trouble with the update_parameters_with_adam()-implementation.
The AssertionError is “Wrong values. Check you formulas for parameters[‘W1’]”.
Here is my implementation:
parameters[‘W’ + str(l)] = parameters[‘W’ + str(l)] - learning_rate * v_corrected[‘dW’ + str(l)] / (np.square(s_corrected[‘dW’ + str(l)]) + epsilon)
parameters[‘b’ + str(l)] = parameters[‘b’ + str(l)] - learning_rate * v_corrected[‘db’ + str(l)] / (np.square(s_corrected[‘db’ + str(l)]) + epsilon)
Got a hint for me what is wrong?
Cheers!