我能够使用以下方法对二进制数据进行交叉验证,但它似乎不适用于多类数据:
> cross_validation.cross_val_score(alg, X, y, cv=cv_folds, scoring='roc_auc')
/home/ubuntu/anaconda3/lib/python3.6/site-packages/sklearn/metrics/scorer.py in __call__(self, clf, X, y, sample_weight)
169 y_type = type_of_target(y)
170 if y_type not in ("binary", "multilabel-indicator"):
--> 171 raise ValueError("{0} format is not supported".format(y_type))
172
173 if is_regressor(clf):
ValueError: multiclass format is not supported
> y.head()
0 10
1 6
2 12
3 6
4 10
Name: rank, dtype: int64
> type(y)
pandas.core.series.Series
我也尝试将roc_auc
更改为f1
但仍有错误:
/home/ubuntu/anaconda3/lib/python3.6/site-packages/sklearn/metrics/classification.py in precision_recall_fscore_support(y_true, y_pred, beta, labels, pos_label, average, warn_for, sample_weight)
1016 else:
1017 raise ValueError("Target is %s but average='binary'. Please "
-> 1018 "choose another average setting." % y_type)
1019 elif pos_label not in (None, 1):
1020 warnings.warn("Note that pos_label (set to %r) is ignored when "
ValueError: Target is multiclass but average='binary'. Please choose another average setting.
我是否可以使用任何方法对此类数据进行交叉验证?
答案 0 :(得分:1)
正如Vivek Kumar评论中指出的那样,sklearn指标支持F1 score和ROC computations的多类平均,尽管在数据不平衡时存在一些限制。因此,您可以使用相应的average
参数手动构建记分员,或使用其中一个预定义参数(例如:'f1_micro','f1_macro','f1_weighted')。
如果需要多个分数,则代替cross_val_score
使用cross_validate
(自模块sklearn.model_selection
中的sklearn 0.19起可用)。