课程
/后端开发
/Python
/机器学习-实现简单神经网络
'Perceptron' object has no attribute 'predict'
2019-09-25
源自:机器学习-实现简单神经网络 3-4
正在回答
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):
把predict函数拿出来,和fit函数并列
举报
人工智能时代,你准备好成为抓住机遇的那百分之二吗。
2 回答'Perceptron' object has no attribute 'predict'
1 回答'Perceptron' object has no attribute 'predict'
2 回答AttributeError: 'Perceptron' object has no attribute 'predict'
1 回答'numpy' has no attribute 'predict'
3 回答总是显示错误:AttributeError: 'Perception' object has no attribute 'predict'