返回列表

10th Place Solution

614. Playground Series - Season 4, Episode 6 | playground-series-s4e6

开始: 2024-06-01 结束: 2024-06-30 学习效果预测 数据算法赛
第 10 名解决方案

第 10 名解决方案

作者: lash_fire (专家)
发布日期: 2024 年 7 月 1 日
竞赛排名: 第 10 名
合作者: lash_fire, Sanyam Jain

首先,我要感谢 Kaggle 团队组织本次比赛。

讽刺的是,
我们的最终提交与 AutoML GrandPrix 解决方案的提交相同,即 Bagged Tunned LGB + Bagged Tunned XGB(Voting)

其在公共排行榜 (Public LB) 上得分为 0.83699,在私有排行榜 (Private LB) 上得分为 0.83905

我应用了 Bagging,n_estimators=100,并通过全量拟合 (full fit) 获得预测
大致如下,

estimators = [
    ('lgb', BaggingClassifier(estimator=lgb, n_estimators=100)),
    ('xgb', BaggingClassifier(estimator=xgb, n_estimators=100)),
]

VotingClassifier(estimators=estimators, voting='soft')

我希望他们在 AutoML GrandPrix 中能考虑私有排行榜 (Private LB) 的分数 🥲。

同比赛其他方案