摘要:
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
阅读(146)
推荐(0)