I'm new to python.
I'm getting this error when I run classify.py
TypeError Traceback (most recent call last)
in
29 # creating the hidden layer of neurons
30 for i in range(n):
---> 31 neuron(a)
32 layer2.append(a)
33
TypeError: 'module' object is not callable
please help me solve this error
I'm new to python.
I'm getting this error when I run classify.py
TypeError Traceback (most recent call last)
in
29 # creating the hidden layer of neurons
30 for i in range(n):
---> 31 neuron(a)
32 layer2.append(a)
33
TypeError: 'module' object is not callable
please help me solve this error