Hello,
In the DLS course 1 week 4 programming assignment I get this error message:
NameError Traceback (most recent call last)
in
----> 1 t_X, t_parameters = L_model_forward_test_case_2hidden()
2 t_AL, t_caches = L_model_forward(t_X, t_parameters)
3
4 print("AL = " + str(t_AL))
5
NameError: name ‘L_model_forward_test_case_2hidden’ is not defined
I was wondering if anyone else has had this problem and might know where to look to fix it? I’ve read everything I could on here regarding the other related errors in this section including using the correct layer once I exit the for loop. This error has come up once I thought I resolved these issues by correcting my indentations so that I am using the ‘A’ that comes out of the for loop in the relu activation for the sigmoid activation.
Thanks