GridSearchCV 给出“__init__() 得到一个意外的关键字参数 'fit_params' 错误
GridSearchCV giving " __init__() got an unexpected keyword argument 'fit_params' error
我是 运行 jupyter 笔记本中的以下代码。
from sklearn.svm import LinearSVC
svc_model = LinearSVC()
svc_params = {'C':[0.01,0.1, 1, 10, 100, 1000]}
grid_svc = GridSearchCV(estimator=svc_model,param_grid=svc_params,cv=5,n_jobs=-1)
GridSearchCV(cv=5, error_score='raise-deprecating',
estimator=LinearSVC(C=1.0, class_weight=None, dual=True, fit_intercept=True,
intercept_scaling=1, loss='squared_hinge', max_iter=1000,
multi_class='ovr', penalty='l2', random_state=None, tol=0.0001, verbose=0),
fit_params=None, iid='warn', n_jobs=-1,
param_grid={'C': [0.01, 0.1, 1, 10, 100, 1000]},
pre_dispatch='2*n_jobs', refit=True, return_train_score='warn',
scoring=None, verbose=0)
不确定为什么会出现此错误,
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
/tmp/ipykernel_20717/2022383170.py in <module>
----> 1 GridSearchCV(cv=5, error_score='raise-deprecating',
2 estimator=LinearSVC(C=1.0, class_weight=None, dual=True, fit_intercept=True,
3 intercept_scaling=1, loss='squared_hinge', max_iter=1000,
4 multi_class='ovr', penalty='l2', random_state=None, tol=0.0001,
5 verbose=0),
TypeError: __init__() got an unexpected keyword argument 'fit_params'
有人能帮忙吗?
简短的回答是当前版本的 GridSearchCV 不接受名为 fit_params
的参数。这可能是早期版本中的一个参数,但我不确定。
这个参数应该做什么?
也没有 iid
,因此如果您删除 fit_params
.
,您可能会遇到类似的错误
我是 运行 jupyter 笔记本中的以下代码。
from sklearn.svm import LinearSVC
svc_model = LinearSVC()
svc_params = {'C':[0.01,0.1, 1, 10, 100, 1000]}
grid_svc = GridSearchCV(estimator=svc_model,param_grid=svc_params,cv=5,n_jobs=-1)
GridSearchCV(cv=5, error_score='raise-deprecating',
estimator=LinearSVC(C=1.0, class_weight=None, dual=True, fit_intercept=True,
intercept_scaling=1, loss='squared_hinge', max_iter=1000,
multi_class='ovr', penalty='l2', random_state=None, tol=0.0001, verbose=0),
fit_params=None, iid='warn', n_jobs=-1,
param_grid={'C': [0.01, 0.1, 1, 10, 100, 1000]},
pre_dispatch='2*n_jobs', refit=True, return_train_score='warn',
scoring=None, verbose=0)
不确定为什么会出现此错误,
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
/tmp/ipykernel_20717/2022383170.py in <module>
----> 1 GridSearchCV(cv=5, error_score='raise-deprecating',
2 estimator=LinearSVC(C=1.0, class_weight=None, dual=True, fit_intercept=True,
3 intercept_scaling=1, loss='squared_hinge', max_iter=1000,
4 multi_class='ovr', penalty='l2', random_state=None, tol=0.0001,
5 verbose=0),
TypeError: __init__() got an unexpected keyword argument 'fit_params'
有人能帮忙吗?
简短的回答是当前版本的 GridSearchCV 不接受名为 fit_params
的参数。这可能是早期版本中的一个参数,但我不确定。
这个参数应该做什么?
也没有 iid
,因此如果您删除 fit_params
.