感覺像大學(xué)研究生博士生課程,不錯,學(xué)習(xí)了,受教了
高等代數(shù),高等矩陣,線性代數(shù),數(shù)學(xué)要好
@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])
這里應(yīng)該是
self.w_ = np.zeros(1 + x.shape[1])
吧?
這里應(yīng)該是
self.w_ = np.zeros(1 + x.shape[1])
吧?
2017-03-23