python自定义数据类型score_值错误:使用sklearn roc_auc_score函数不支持多类多输出格式...

首先,roc_auc_score函数需要具有相同形状的输入参数。sklearn.metrics.roc_auc_score(y_true, y_score, average=’macro’, sample_weight=None)

Note: this implementation is restricted to the binary classification task or multilabel classification task in label indicator format.

y_true : array, shape = [n_samples] or [n_samples, n_classes]

True binary labels in binary label indicators.

y_score : array, shape = [n_samples] or [n_samples, n_classes]

Target scores, can either be probability estimates of the positive class, confidence values, or non-thresholded measure of decisions (as returned by “decision_function” on some classifiers).

现在,输入的是真实和预测的分数,而不是您在发布的示例中使用的培训和标签数据。详细信息,model.fit(X_important_train, y_train)

model.score(X_important_train, y_train)

# this is wrong here

roc_auc_score(X_important_train, y_train)

你应该这样做:y_pred = model.predict(X_test_data)

roc_auc_score(y_true, y_pred)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值