这篇博客有详细介绍
http://blog.csdn.net/red_stone1/article/details/73331540
http://blog.csdn.net/red_stone1/article/details/73331540
2018-02-11
In[5]没有问题,问题在于第一段的问题,
1,init前后各有两个下划线,不是一个,即__init__
2,net_input和predict方法应该和fit方法是并列而非包含
位置参考如下:
class Perceptron(object):
def __init__(self, eta = 0.01, n_iter=10):
pass
def fit(self, X, y):
pass
def net_input(self, X):
pass
def predict(self, X):
pass
pass
1,init前后各有两个下划线,不是一个,即__init__
2,net_input和predict方法应该和fit方法是并列而非包含
位置参考如下:
class Perceptron(object):
def __init__(self, eta = 0.01, n_iter=10):
pass
def fit(self, X, y):
pass
def net_input(self, X):
pass
def predict(self, X):
pass
pass
2018-01-23