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

我同样的问题,报错“”Perceptron object has no attribute predict“,如何解决啊?急急急

正在回答

2 回答

def predict(self, X):
    return np.where(self.net_input(X) >= 0.0, 1, -1)

def net_input(self, X):
    """
    z = W0*X0 + W1*X1 + W2*X2 + ....Wn*Xn
    对电信号加总求和
    """
    return np.dot(X, self.w_[1:] + self.w_[0])
# 把上面两函数放到fit()上面
def fit(self, X, y):


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

把predict函数拿出来,和fit函数并列

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

举报

0/150
提交
取消

我同样的问题,报错“”Perceptron object has no attribute predict“,如何解决啊?急急急

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