Hi,
I am getting an error while computing the backward propagation. I’ve added all the functions as per the instructions. Still, I am getting the below error:
NameError Traceback (most recent call last)
in
----> 1 parameters, cache, t_X, t_Y = backward_propagation_test_case()
2
3 grads = backward_propagation(parameters, cache, t_X, t_Y)
4 print ("dW1 = "+ str(grads[“dW1”]))
5 print ("db1 = "+ str(grads[“db1”]))
NameError: name ‘backward_propagation_test_case’ is not defined
what are t_X and t_Y? As per my understanding, we haven’t generated these parameters.
Regards,
Balram