【发布时间】:2016-07-12 09:04:03
【问题描述】:
我想应用样本权重,同时使用来自 sklearn 的管道,它应该进行特征转换,例如多项式,然后应用回归量,例如额外树。
我在下面的两个示例中使用了以下包:
from sklearn.ensemble import ExtraTreesRegressor
import numpy as np
from sklearn.pipeline import Pipeline
from sklearn.preprocessing import PolynomialFeatures
只要我分别转换特征并在之后生成和训练模型,一切都会很好:
#Feature generation
X = np.random.rand(200,4)
Y = np.random.rand(200)
#Feature transformation
poly = PolynomialFeatures(degree=2)
poly.fit_transform(X)
#Model generation and fit
clf = ExtraTreesRegressor(n_estimators=5, max_depth = 3)
weights = [1]*100 + [2]*100
clf.fit(X,Y, weights)
但是在管道中这样做是行不通的:
#Pipeline generation
pipe = Pipeline([('poly2', PolynomialFeatures(degree=2)), ('ExtraTrees', ExtraTreesRegressor(n_estimators=5, max_depth = 3))])
#Feature generation
X = np.random.rand(200,4)
Y = np.random.rand(200)
#Fitting model
clf = pipe
weights = [1]*100 + [2]*100
clf.fit(X,Y, weights)
我收到以下错误:TypeError: fit() 最多接受 3 个参数(给定 4 个) 在这个简单的例子中,修改代码是没有问题的,但是当我想在我的真实代码中对我的真实数据运行几个不同的测试时,能够使用管道和样本权重
【问题讨论】:
标签: python python-2.7 scikit-learn pipeline