gpt4 book ai didi

python - xgboost.cv 给出 TypeError : 'StratifiedKFold' object is not iterable

转载 作者:太空宇宙 更新时间:2023-11-04 02:43:18 25 4
gpt4 key购买 nike

我一直在尝试在 python 2.7 中实现这段代码。它给了我这个错误。我将不胜感激帮助。我有最新版本的 sklearn(0.18.1) 和 xgboost(0.6)

import xgboost as xgb
from sklearn.model_selection import StratifiedKFold
from sklearn.metrics import f1_score, roc_auc_score, confusion_matrix

nfold = 3
kf = StratifiedKFold(nfold, shuffle=True)

dtrain = xgb.DMatrix(x_train, label=y_train)
dtest = xgb.DMatrix(x_test)

params = {
'objective' : 'binary:logistic',
'eval_metric': 'auc',
'min_child_weight':10,
'scale_pos_weight':scale,
}
hist = xgb.cv(params, dtrain, num_boost_round=10000, folds=kf, early_stopping_rounds=50, as_pandas=True, verbose_eval=100, show_stdv=True, seed=0)

我收到这个错误:

TypeErrorTraceback (most recent call last)
<ipython-input-52-41c415e116d7> in <module>()
5 'scale_pos_weight':scale,
6 }
----> 7 hist = xgb.cv(params, dtrain, num_boost_round=10000, folds=kf, early_stopping_rounds=50, as_pandas=True, verbose_eval=100, show_stdv=True, seed=0)
8
9

/opt/conda/lib/python2.7/site-packages/xgboost/training.pyc in cv(params, dtrain, num_boost_round, nfold, stratified, folds, metrics, obj, feval, maximize, early_stopping_rounds, fpreproc, as_pandas, verbose_eval, show_stdv, seed, callbacks)
369
370 results = {}
--> 371 cvfolds = mknfold(dtrain, nfold, params, seed, metrics, fpreproc, stratified, folds)
372
373 # setup callbacks

/opt/conda/lib/python2.7/site-packages/xgboost/training.pyc in mknfold(dall, nfold, param, seed, evals, fpreproc, stratified, folds)
236 idset = [randidx[(i * kstep): min(len(randidx), (i + 1) * kstep)] for i in range(nfold)]
237 elif folds is not None:
--> 238 idset = [x[1] for x in folds]
239 nfold = len(idset)
240 else:

TypeError: 'StratifiedKFold' object is not iterable

最佳答案

xgb.cv函数中,尝试替换

folds=kf

folds=list(kf.split(x_train,y_train))

split method应用是为了将其拆分为训练和验证。然后我们将它转​​换成一个 list,这样它就是一个可迭代的对象。

如果这不起作用,请尝试不使用 list。即:

folds=kf.split(x_train,y_train)

关于python - xgboost.cv 给出 TypeError : 'StratifiedKFold' object is not iterable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45849374/

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