@Clissy:
file = 'http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data'
沒有s
file = 'http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data'
沒有s
2017-03-23
self.w_ = np.zero(1 + x.shape[1])
這里應該是
self.w_ = np.zeros(1 + x.shape[1])
吧?
這里應該是
self.w_ = np.zeros(1 + x.shape[1])
吧?
2017-03-23