I get this error when I run. Can someone help me solve this problem.
NameError Traceback (most recent call last)
in
1 # UNIT TESTS
----> 2 test_c2(my_dense)
NameError: name ‘test_c2’ is not defined
I get this error when I run. Can someone help me solve this problem.
NameError Traceback (most recent call last)
in
1 # UNIT TESTS
----> 2 test_c2(my_dense)
NameError: name ‘test_c2’ is not defined
This usually indicates that a previous cell that defines test_c2 was not run. Please run the notebook from the top-most code cell down, and the problem should go away when you reach again the cell in question.
Last but not least, welcome to our community @Saurish_Reddy
Raymond
Thank you for the quick reply, I just missed running the unit test1, hence that error. Now all is well.
Great. Since it’s been resolved, I am closing this thread.