In the exercise, while running the basic_sigmoid_test, i get the following error
NameError Traceback (most recent call last)
in
----> 1 print("basic_sigmoid(1) = " + str(basic_sigmoid(1)))
2
3 basic_sigmoid_test(basic_sigmoid)
NameError: name ‘basic_sigmoid’ is not defined
I haven’t changed anything in the code except defining the string. Ideally this code should not throw an error since ‘basic_sigmoid’ is only the method name. Can someone please help me on this