XGBoost 分类器在定义“objective”:“binary:logistic”后返回负预测

发布于 2025-01-10 09:32:46 字数 835 浏览 0 评论 0原文

问题

我正在尝试使用 XGBoost 分类器并定义一个使用 f-beta-score 的自定义矩阵,但我在 np 之后返回到自定义函数的负预测值.round 我最终得到了三个值 [-1,0,1]

问题

我该如何解决这个问题问题,因为我想知道训练评估期间的 f_beta_score?

自定义性能矩阵的函数

def fbeta_func(y_predicted, y_true):
  f = fbeta_score(list(y_test),np.round(y_predicted),beta=0.5)
  return 'f_beta', f

然后我在拟合函数中调用此函数:

from xgboost import XGBClassifier
clf = XGBClassifier(**param)
clf.fit(X_train, y_train,
    eval_set=[(X_test, y_test)],
    eval_metric=fbeta_func,
    verbose=True)

以下是参数:

在此处输入图像描述

Issue

I am trying to use the XGBoost classifier and define a custom matric that uses f-beta-score but I am getting negative predicted values returned to the custom function and after np.round I ended up getting three values [-1,0,1]

Question

How do I solve this issue, as I want to know about the f_beta_score during the training eval?

Function of Custom performance matrics

def fbeta_func(y_predicted, y_true):
  f = fbeta_score(list(y_test),np.round(y_predicted),beta=0.5)
  return 'f_beta', f

And then I am calling this function in the fit function:

from xgboost import XGBClassifier
clf = XGBClassifier(**param)
clf.fit(X_train, y_train,
    eval_set=[(X_test, y_test)],
    eval_metric=fbeta_func,
    verbose=True)

Here are the parameters:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文