[tabarena] HillClimbingEnsembler for #4505 ensembling investigation - #469
Open
a11to1n3 wants to merge 3 commits into
Open
[tabarena] HillClimbingEnsembler for #4505 ensembling investigation#469a11to1n3 wants to merge 3 commits into
a11to1n3 wants to merge 3 commits into
Conversation
Kaggle/Matt-OP style convex-blend hill climbing as a swappable AbstractEnsembler next to GreedyEnsembler (Caruana/AG ES). Includes unit tests, experimental compare/benchmark scripts, and a pandas read-only fix in RankScorer for modern numpy. AG bagged-OOF evidence (local): HC does not beat Greedy on mean test error → do not change AutoGluon ensemble defaults based on this.
Collaborator
|
Thank you for the submission! I will leave this to @Innixma to review. From my POV, a small comment: not sure we want to move the experimental script files into the main branch. We could just keep them here in the PR. |
Author
|
Hello @LennartPurucker, well-noted, I will move out the script files. Looking forward to your reviews. Cheers, |
Keep HillClimbingEnsembler + unit tests for mainline; leave local benchmark/AG-OOF scripts out of the merge per review feedback.
Use a full-neighborhood best (model, w) step each round and optionally include the Caruana weight w=1/(n_support+1). Add multiclass simplex renormalization, optional warm-start weights, and broader unit tests. Still optional research/post-hoc; default ensembler remains Greedy.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#4505 investigation
Question: Does continuous hill climbing improve post-hoc ensembling over Caruana Greedy on TabRepo / TabArena OOF?
Answer: no clear improvement. HC is near-parity with Greedy (tiny edges depending on metric; not significant). Not enough to change the default ensembler.
Code
HillClimbingEnsembler(global-best step + Caruana grid weight)GreedyEnsembler(no behavior change unless opted in)Evidence
1) Paper all-config Portfolio-N200 (main result)
Protocol (evaluate_baselines / zeroshot spirit):
2) TabArena-Lite style table (fold 0, RF-calibrated Elo)
Same published methods as the AG 1.6 release table, plus our Portfolio-N200 rows. Elo anchor: RF (default) = 1000.
*Portfolio
train sis summed config train time in the zeroshot pool, not a single AutoML wall-clock fit.Published Elo ordering matches the AG 1.6 release table (absolute Elo shifts slightly because the opponent set includes Portfolio-N200 + RF).
Interpretation
Scope / non-goals
GreedyEnsemblerby default