为了账号安全,请及时绑定邮箱和手机立即绑定

麻烦大神帮我看一下这段代码的错误在哪里

代码如下:

import numpy as np
class Perceptron(object):
    def __init__(self,eta=0.01,n_iter=2):
        self.eta=eta
        self.n_iter=n_iter
    def fit(self,x,y):
        self.w_=np.zeros(1+x.shape[1])
        self.errors_=[]
        for t in range(0,self.n_iter):
            errors=0
        for k,target in zip(x,y):
            update=self.eta * (target-self.predict(k))
            self.w_[1:]+=update * k
            self.w_[0]+=update
            errors+=np.where(update==0.0,1,-1)
            if errors > x.shape[0]:
                return (self.w_)
            else:
                self.errors_.append(errors)
    def net_input(self,x):
        return np.dot(x,self.w_[1:])+self.w_[0]
    def predict(self,x):
        return np.where(self.net_input(x)>0.0,-1,1)

P1=Perceptron()
x1 = [[0,1,2],[0,0,0]]
x2=np.array(x1)
print(x2)
y1=np.array([1,-1])
print(x2.shape)
L1=P1.fit(x2,y1)
print(L1)
print(x2)

谢谢大神,请求对代码进行指点修改,当前对于输入的数据,得到的返回权值是None,请问原因是什么,怎么修改,万分感谢!


正在回答

2 回答

errors+=np.where(update==0.0,1,-1)和 errors+=int(update!=0.0)不一样  (update!=0.0)只有0和1两种取值

下面的你的代码我理解不清楚,所以我是觉得可能是这个地方错误,仅供参考

0 回复 有任何疑惑可以回复我~

http://img1.sycdn.imooc.com//5f14f01f0001483408470690.jpg

http://img1.sycdn.imooc.com//5f14f0360001e45908420607.jpg

记得点个赞哦

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

麻烦大神帮我看一下这段代码的错误在哪里

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信