Python XGBoost 预测与 DMatrix 的差异

发布于 2025-01-09 01:56:31 字数 662 浏览 0 评论 0原文

我发现 xbgoost 预测存在两个问题。我使用 XGBClassifier 训练模型,并尝试使用 Booster 加载模型进行预测,我发现

  1. 使用 xbg.Boosterxbg.Booster 的预测略有不同code>xgb.Classifier,见下文。

输入图片这里的描述

  1. 使用DMatrix时,listnumpy array之间的预测是不同的,见下文,

在此处输入图像描述

有些差异相当大,我不确定为什么会发生这种情况以及哪个预测应该是事实的来源?

I found there are 2 problems with xbgoost predictions. I trained the model with XGBClassifier and tried to load the model using Booster for prediction, I found

  1. Predictions are slightly different using xbg.Booster and xgb.Classifier, see below.

enter image description here

  1. Predictions are different between list and numpy array when using DMatrix, see below,

enter image description here

Some difference is quite big, I am not sure why this is happening and which prediction should be the source of truth?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天煞孤星 2025-01-16 01:56:31

对于第二个问题,当您将列表转换为 numpy 数组时,您的数据类型可能会发生变化(取决于您使用的 numpy 版本)。例如,在 numpy 1.19.5 上,尝试将列表 ["1",1] 转换为 numpy 数组并查看结果。

For the second question, your data types could change when you convert a list to a numpy array (depending on the numpy version you're using). For example on numpy 1.19.5, try converting list ["1",1] to a numpy array and see the result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文