gpt4 book ai didi

python - 估算器管道的参数丢失无效

转载 作者:行者123 更新时间:2023-11-28 21:40:44 25 4
gpt4 key购买 nike

我正在尝试使用 sklearn 实现 SGDClassifier,但出现此错误:

ValueError: Invalid parameter loss for estimator Pipeline. Check the list of available parameters with `estimator.get_params().keys()`.

这是我的代码:

pipeline = Pipeline([
('clf', SGDClassifier())
])

parameters = {
'seed': [0],
'loss': ('log', 'hinge'),
'penalty': ['l1', 'l2', 'elasticnet'],
'alpha': [0.001, 0.0001, 0.00001, 0.000001]
}

score_func = make_scorer(metrics.f1_score)

grid_search = GridSearchCV(pipeline, parameters, n_jobs=3,
verbose=1, scoring=score_func)

grid_search.fit(X, Y)

我该如何解决这个问题?

最佳答案

来自User's Guide :

Parameters of the estimators in the pipeline can be accessed using the <estimator>__<parameter> syntax

那么试试这个:

parameters = {
'clf__seed': [0],
'clf__loss': ('log', 'hinge'),
'clf__penalty': ['l1', 'l2', 'elasticnet'],
'clf__alpha': [0.001, 0.0001, 0.00001, 0.000001]
}

关于python - 估算器管道的参数丢失无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45261459/

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