cc013陈文朋  

2018年12月23日

摘要: from sklearn.datasets import load_boston boston=load_boston() x=boston.data y=boston.target x.shape from sklearn.preprocessing import PolynomialFeatures poly=PolynomialFeatures(degree=2)#多项式的度 度越小曲... 阅读全文
posted @ 2018-12-23 21:55 C22C 阅读(141) 评论(0) 推荐(0) 编辑