gpt4 book ai didi

python - 投票分类器中的超参数

转载 作者:太空狗 更新时间:2023-10-30 00:38:16 26 4
gpt4 key购买 nike

所以,我有一个看起来像这样的分类器

clf = VotingClassifier(estimators=[ 
('nn', MLPClassifier()),
('gboost', GradientBoostingClassifier()),
('lr', LogisticRegression()),

], voting='soft')

我想从本质上调整每个估算器的超参数。

有没有办法调整这些分类器的“组合”?谢谢

最佳答案

您可以使用 GridSearchCV 执行此操作,但稍作修改。在参数字典中,不是直接指定属性,而是需要在 VotingClassfier 对象中使用 classfier 的键,后跟 __,然后是属性本身。

看看这个例子

from sklearn.linear_model import LogisticRegression
from sklearn.svm import SVC
from sklearn.ensemble import VotingClassifier
from sklearn.model_selection import GridSearchCV

X = np.array([[-1.0, -1.0], [-1.2, -1.4], [-3.4, -2.2], [1.1, 1.2],[-1.0, -1.0], [-1.2, -1.4], [-3.4, -2.2], [1.1, 1.2]])
y = np.array([1, 1, 2, 2,1, 1, 2, 2])

eclf = VotingClassifier(estimators=[
('svm', SVC(probability=True)),
('lr', LogisticRegression()),
], voting='soft')

#Use the key for the classifier followed by __ and the attribute
params = {'lr__C': [1.0, 100.0],
'svm__C': [2,3,4],}

grid = GridSearchCV(estimator=eclf, param_grid=params, cv=2)

grid.fit(X,y)

print (grid.best_params_)
#{'lr__C': 1.0, 'svm__C': 2}

关于python - 投票分类器中的超参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46580199/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com