autogluon/tabarena

A Living Benchmark for Machine Learning on Tabular Data

307

stars

1,445

commits

Python

primary language

Sep 15, 2026

updated

tabarena.ai

README

    TabArena Logo

A Living Benchmark for Machine Learning on Tabular Data πŸ’«


πŸš€ LeaderboardπŸ“‚ Example ScriptsπŸ“Š Dataset CurationπŸ“„ Papers: TabArena-v0.1 Β· BeyondArena

TabArena is a living benchmarking system that makes benchmarking tabular machine learning models a reliable experience. TabArena implements best practices to ensure methods are represented at their peak potential, including cross-validated ensembles, strong hyperparameter search spaces contributed by the method authors, early stopping, model refitting, parallel bagging, memory usage estimation, and more. Explore the latest results on the live leaderboard.

This single codebase powers two complementary benchmarks that share the same fitting, runner, and evaluation code:

  • 🏟️ TabArena-v0.1 β€” the living benchmark on curated, IID tabular datasets.
  • 🌍 BeyondArena β€” a holistic, beyond-IID benchmark spanning IID, temporal, and grouped tasks across a wide range of dataset sizes and feature dimensionalities. BeyondArena will superseed TabArena-v0.1 in the future.

[!TIP] New here? Start with TabArena, then graduate to BeyondArena. Get your model working and competitive on TabArena's curated IID datasets first; once it holds up there, run the same code on BeyondArena to stress-test how well it generalizes beyond IID.

TabArena covers 51 curated datasets (9–30 splits each) and 27+ methods, including 10+ tabular foundation models β€” over 50M trained models, with all validation and test predictions cached for tuning and post-hoc ensembling. BeyondArena extends this to 142 datasets across IID, temporal, and grouped task types, spanning tiny to 1M-row datasets and low- to high-dimensional features.

⚑ Quickstart

[!TIP] The fastest way to try TabArena end-to-end:

pip install uv
git clone https://github.com/autogluon/tabarena.git && cd tabarena
uv venv --seed --python 3.12 && source .venv/bin/activate
uv pip install --prerelease=allow -e "./packages/tabarena[benchmark]"
python examples/benchmarking/run_quickstart_tabarena_model.py   # benchmark a model that TabArena tunes
python examples/benchmarking/run_quickstart_tabarena_system.py  # benchmark a system that tunes itself

TabArena ranks models (one method, tuned by TabArena under a shared protocol) and systems (a pipeline that does its own tuning and ensembling, like AutoGluon); see Contributing a Model or System for the difference and how to submit yours. For other install paths (eval-only, editable AutoGluon, dependency), see Installation below. To try BeyondArena instead, run python examples/beyondarena/run_quickstart_beyondarena_model.py (or run_quickstart_beyondarena_system.py) with the same install.

πŸ•ΉοΈ Use Cases

We share more details on various use cases of TabArena in our examples:

  • 🌍 Benchmarking Beyond IID (BeyondArena): please refer to examples/beyondarena.
  • πŸ“Š Benchmarking Predictive Machine Learning Models and Systems: please refer to examples/benchmarking; to get yours onto the leaderboard, see Contributing a Model or System.
  • πŸ§ͺ Advanced and Specialized Usage (incl. using a TabArena model directly on your own data): please refer to examples/advanced.
  • πŸ—ƒοΈ Analysing Metadata and Meta-Learning: please refer to examples/meta.
  • πŸ“ˆ Generating Plots and Leaderboards: please refer to examples/plots.
  • πŸ” Reproducibility: we share instructions for reproducibility in examples.

Datasets

Please refer to Data Foundry (documentation) to learn more about the datasets or to contribute data.

Contributing a Model or System

TabArena accepts two kinds of entrant: a model (one method that TabArena tunes under its shared protocol) and a system (a pipeline that owns its own preprocessing, validation, tuning and ensembling inside the budget TabArena hands it). TabArena is not a benchmarking service: evaluate your method on TabArena-Lite first, open a pull request with the template, and a maintainer verifies and re-runs it for the final entry. The details:

🧭 Model or system? β€” the difference, and where each lives in the code

A model is one method that TabArena tunes under its shared protocol: shared preprocessing, a validation split provided by TabArena, a search space of up to 200 configurations, bagging, and the default / tuned / tuned + ensembled variants on the leaderboard. A system owns its whole pipeline (preprocessing, validation, tuning, ensembling) inside the budget TabArena hands it: AutoML frameworks such as AutoGluon, TabFM+, LLM agents, hosted APIs. If you would have to invent a search space for your method, it is a model. If that makes no sense because the method searches for itself, it is a system.

ModelSystem
Codepackages/tabarena/src/tabarena/models/<key>/packages/tabarena/src/tabarena/systems/<key>/
Quick startrun_quickstart_tabarena_model.py, run_quickstart_beyondarena_model.pyrun_quickstart_tabarena_system.py, run_quickstart_beyondarena_system.py
Step-by-step guideadd-model skilladd-system skill
Testpytest -m models -k <Key>pytest tests/tabarena/systems/
πŸ“¬ Submission process β€” evaluate, open a PR, verification, leaderboard update

We accept methods their authors have already evaluated with the official pipeline and confirm the results by re-running them.

  1. Say how your method differs from the entrants already on the leaderboard. A new version of an existing method goes into the existing folder and supersedes the old entry rather than becoming a new one.
  2. Integrate it following the guide above and run the quick start.
  3. Evaluate it yourself on TabArena-Lite (subset="lite", the first split of every dataset) with HPO where applicable (the default plus about 25 random configurations), or on the BeyondArena core subset.
  4. Open a pull request; the template asks for the expected files, the results, the hardware and the entry-point script. You can also share the run's output directory (the expname folder with the results.pkl files) so we can verify and integrate the results directly.
  5. A maintainer reviews the pull request, then runs the method on the full task set on the benchmark hardware for the final entry. We are happy to help with the integration and the run.
  6. Maintainers verify that run against your Lite results, and the person you name in the template signs off on it, which marks the entry as verified.
  7. The results are processed, hosted and registered, and the pull request is merged.
  8. The leaderboard is regenerated from the hosted results after the merge, usually within days.

Questions go through the issue forms: one for model and system submissions, one for leaderboard or dataset questions that touch this code base. Pure leaderboard questions belong in the leaderboard's Community tab, dataset questions in Data Foundry. Anything else: mail@tabarena.ai.

More Documentation

There is no separate documentation site yet; the detailed reference lives in the repo and is written for humans and coding agents alike. AGENTS.md covers the architecture, the core data flow, models vs systems, entrant pools, caching, and the maintainer flows (processing and uploading results, releasing to PyPI). The skills in .claude/skills/ are step-by-step guides: add-model and add-system for integrating a new entrant, benchmark-model for running it on the benchmark cluster, upload-method and update-leaderboard for publishing results, and adapt-tabarena for building your own domain benchmark on top of TabArena. The examples are the runnable tour.

πŸͺ„ Installation

[!IMPORTANT] Requires Python 3.11–3.13 and uv.

TabArena is a uv workspace; its installable packages live under packages/ (tabarena, bencheval, tabflow_slurm). Install the tabarena package directly from packages/tabarena with the extras you need. The --prerelease=allow flag is required so uv resolves the pre-release dependency.

First clone the repo and create a virtual environment (one time):

git clone https://github.com/autogluon/tabarena.git
cd tabarena
uv venv --seed --python 3.12
source .venv/bin/activate

Then pick the install path that matches what you want to do:

πŸ“Š Evaluation only β€” leaderboards, metrics & plots, no model fitting

Loads cached results and computes/plots leaderboards & metrics (ELO, win-rates, ranks). Depends on autogluon.tabular (not the full AutoGluon meta-package) β€” no model-fitting libraries and no torch.

uv pip install --prerelease=allow -e "./packages/tabarena[plot]"
πŸš€ Benchmark β€” core set of models for benchmarking

Installs the core models used for standard benchmarking: tabpfn, tabicl, ebm, search_spaces, realmlp, tabdpt, tabm.

uv pip install --prerelease=allow -e "./packages/tabarena[benchmark]"
βž• Benchmark + Extended β€” core models plus the extended model set

The extended extra is experimental and may fail to resolve or install due to incompatible version requirements across model dependencies. Use it only if you specifically need every model in a single environment; otherwise prefer benchmark or benchmark plus one specific model.

Layers the extended model set (modernnca, xrfm, sap-rpt-oss, ...) on top of the core benchmark set.

uv pip install --prerelease=allow -e "./packages/tabarena[benchmark,extended]"

To install only one extended model on top of benchmark (recommended over extended when you only need a single extra model), pass its extra by name β€” for example, just xrfm:

uv pip install --prerelease=allow -e "./packages/tabarena[benchmark,xrfm]"
πŸ› οΈ Developer β€” editable AutoGluon + editable TabArena

Create a virtual environment in your workspace directory (it spans both repos cloned below, so .venv lives at the workspace root rather than inside either repo):

uv venv --seed --python 3.12 .venv
source .venv/bin/activate

Install editable AutoGluon and TabArena:

git clone https://github.com/autogluon/autogluon.git
./autogluon/full_install.sh

git clone https://github.com/autogluon/tabarena.git
uv pip install --prerelease=allow -e "./tabarena/packages/tabarena[benchmark]"

In PyCharm, mark packages/tabarena/src/ and each autogluon/src/ subdirectory as Sources Root so imports resolve.

πŸ§ͺ PyPI β€” experimental pre-releases, no clone needed

tabarena and bencheval are published to PyPI as pre-releases for projects that cannot depend on git URLs, so pass --pre (pip) or --prerelease=allow (uv). The core package and [plot] are complete. Model extras whose upstream package is only available from git (tabfm, sap-rpt-oss, exaone_tabular) are empty on PyPI; the model's install hint tells you what to install by hand. The git checkout above stays the recommended install.

uv pip install --prerelease=allow "tabarena[plot]"   # or: pip install --pre "tabarena[plot]"
uv pip install --prerelease=allow bencheval          # leaderboard engine only
πŸ“¦ Use TabArena as a dependency

Add one of the following to your project's dependencies:

# TabArena depends on a pre-release of AutoGluon, so allow pre-releases when installing
# (e.g. `uv pip install --prerelease=allow ...` or `pip install --pre ...`).
# Alternatively, pin AutoGluon to a specific pre-release (an exact `==` pin resolves a
# pre-release without the flag), e.g. add `"autogluon.tabular==1.5.1b20260626"`.

# From PyPI (experimental pre-releases; each tabarena release pins its matching bencheval):
"tabarena>=0.1.0a1"
# From git (tip of main; publishable to PyPI only as a source-only extra, see issue #495):
"tabarena @ git+https://github.com/autogluon/tabarena.git#subdirectory=packages/tabarena"

πŸ“¦ TabArena Artifacts

TabArena caches predictions, results, and leaderboards as downloadable artifacts so you can reproduce or extend any analysis without re-running the benchmark.

Artifact tiers, sizes, and examples

Artifacts download to ~/.cache/tabarena/ by default. Override the location with the TABARENA_CACHE environment variable.

Raw data is ~100 GB per method type. Point TABARENA_CACHE at a large disk before downloading it.

TierContentsSize / methodExample
Raw dataPer-child test predictions, full metadata, system info~100 GBinspect_raw_data_and_verify_splits.py
Processed dataMinimal data for HPO simulation, portfolios, leaderboards~10 GBinspect_processed_data.py
ResultsPer-config / HPO DataFrames (test error, val error, train time, inference time)<1 MBrun_generate_main_leaderboard.py
LeaderboardsAggregated ELO, win-rate, average rank, improvability<1 MBβ€”
Figures & PlotsGenerated from results and leaderboardsβ€”β€”

πŸ“„ Citation

If you use this code in a scientific publication, please cite the relevant paper(s): TabArena for the living IID benchmark, and BeyondArena for the beyond-IID benchmark.

TabArena

TabArena: A Living Benchmark for Machine Learning on Tabular Data Nick Erickson, Lennart Purucker, Andrej Tschalzev, David HolzmΓΌller, Prateek Mutalik Desai, David Salinas, Frank Hutter NeurIPS 2025, Datasets and Benchmarks Track

πŸ“„ arXiv Β· 🎀 NeurIPS poster & video

BibTeX

The entry uses year=2026 because NeurIPS'25 proceedings are published in 2026.

@article{erickson2026tabarena,
  title   = {TabArena: A Living Benchmark for Machine Learning on Tabular Data},
  author  = {Erickson, Nick and Purucker, Lennart and Tschalzev, Andrej and Holzm{\"u}ller, David and Desai, Prateek and Salinas, David and Hutter, Frank},
  journal = {Advances in Neural Information Processing Systems},
  volume  = {38},
  year    = {2026}
}

BeyondArena

Beyond IID: How General Are Tabular Foundation Models, Really? Lennart Purucker, Andrej Tschalzev, Nick Erickson, Gioia Blayer, David HolzmΓΌller, Alan Arazi, Alexander Pfefferle, Mustafa Tajjar, GaΓ«l Varoquaux, Frank Hutter

πŸ“„ arXiv

BibTeX
@misc{purucker2026beyondiid,
  title         = {Beyond IID: How General Are Tabular Foundation Models, Really?},
  author        = {Purucker, Lennart and Tschalzev, Andrej and Erickson, Nick and Blayer, Gioia and Holzm{\"u}ller, David and Arazi, Alan and Pfefferle, Alexander and Tajjar, Mustafa and Varoquaux, Ga{\"e}l and Hutter, Frank},
  year          = {2026},
  eprint        = {2606.30410},
  archivePrefix = {arXiv},
  primaryClass  = {cs.LG},
  url           = {https://arxiv.org/abs/2606.30410}
}

Relation to TabRepo

TabArena was built upon and now replaces TabRepo. To see details about TabRepo, the portfolio simulation repository, refer to tabrepo.md.

Research code

This repository contains research code intended for academic research and experimentation. It is not production-ready and should be reviewed, tested, and secured before use in production.

Contributors

Innixma

1,029 commits

LennartPurucker

235 commits

geoalgo

119 commits

dholzmueller

18 commits

autogluon/tabarena

A Living Benchmark for Machine Learning on Tabular Data

307

stars

1,445

commits

Python

primary language

Sep 15, 2026

updated

tabarena.ai

README

    TabArena Logo

A Living Benchmark for Machine Learning on Tabular Data πŸ’«


πŸš€ LeaderboardπŸ“‚ Example ScriptsπŸ“Š Dataset CurationπŸ“„ Papers: TabArena-v0.1 Β· BeyondArena

TabArena is a living benchmarking system that makes benchmarking tabular machine learning models a reliable experience. TabArena implements best practices to ensure methods are represented at their peak potential, including cross-validated ensembles, strong hyperparameter search spaces contributed by the method authors, early stopping, model refitting, parallel bagging, memory usage estimation, and more. Explore the latest results on the live leaderboard.

This single codebase powers two complementary benchmarks that share the same fitting, runner, and evaluation code:

  • 🏟️ TabArena-v0.1 β€” the living benchmark on curated, IID tabular datasets.
  • 🌍 BeyondArena β€” a holistic, beyond-IID benchmark spanning IID, temporal, and grouped tasks across a wide range of dataset sizes and feature dimensionalities. BeyondArena will superseed TabArena-v0.1 in the future.

[!TIP] New here? Start with TabArena, then graduate to BeyondArena. Get your model working and competitive on TabArena's curated IID datasets first; once it holds up there, run the same code on BeyondArena to stress-test how well it generalizes beyond IID.

TabArena covers 51 curated datasets (9–30 splits each) and 27+ methods, including 10+ tabular foundation models β€” over 50M trained models, with all validation and test predictions cached for tuning and post-hoc ensembling. BeyondArena extends this to 142 datasets across IID, temporal, and grouped task types, spanning tiny to 1M-row datasets and low- to high-dimensional features.

⚑ Quickstart

[!TIP] The fastest way to try TabArena end-to-end:

pip install uv
git clone https://github.com/autogluon/tabarena.git && cd tabarena
uv venv --seed --python 3.12 && source .venv/bin/activate
uv pip install --prerelease=allow -e "./packages/tabarena[benchmark]"
python examples/benchmarking/run_quickstart_tabarena_model.py   # benchmark a model that TabArena tunes
python examples/benchmarking/run_quickstart_tabarena_system.py  # benchmark a system that tunes itself

TabArena ranks models (one method, tuned by TabArena under a shared protocol) and systems (a pipeline that does its own tuning and ensembling, like AutoGluon); see Contributing a Model or System for the difference and how to submit yours. For other install paths (eval-only, editable AutoGluon, dependency), see Installation below. To try BeyondArena instead, run python examples/beyondarena/run_quickstart_beyondarena_model.py (or run_quickstart_beyondarena_system.py) with the same install.

πŸ•ΉοΈ Use Cases

We share more details on various use cases of TabArena in our examples:

  • 🌍 Benchmarking Beyond IID (BeyondArena): please refer to examples/beyondarena.
  • πŸ“Š Benchmarking Predictive Machine Learning Models and Systems: please refer to examples/benchmarking; to get yours onto the leaderboard, see Contributing a Model or System.
  • πŸ§ͺ Advanced and Specialized Usage (incl. using a TabArena model directly on your own data): please refer to examples/advanced.
  • πŸ—ƒοΈ Analysing Metadata and Meta-Learning: please refer to examples/meta.
  • πŸ“ˆ Generating Plots and Leaderboards: please refer to examples/plots.
  • πŸ” Reproducibility: we share instructions for reproducibility in examples.

Datasets

Please refer to Data Foundry (documentation) to learn more about the datasets or to contribute data.

Contributing a Model or System

TabArena accepts two kinds of entrant: a model (one method that TabArena tunes under its shared protocol) and a system (a pipeline that owns its own preprocessing, validation, tuning and ensembling inside the budget TabArena hands it). TabArena is not a benchmarking service: evaluate your method on TabArena-Lite first, open a pull request with the template, and a maintainer verifies and re-runs it for the final entry. The details:

🧭 Model or system? β€” the difference, and where each lives in the code

A model is one method that TabArena tunes under its shared protocol: shared preprocessing, a validation split provided by TabArena, a search space of up to 200 configurations, bagging, and the default / tuned / tuned + ensembled variants on the leaderboard. A system owns its whole pipeline (preprocessing, validation, tuning, ensembling) inside the budget TabArena hands it: AutoML frameworks such as AutoGluon, TabFM+, LLM agents, hosted APIs. If you would have to invent a search space for your method, it is a model. If that makes no sense because the method searches for itself, it is a system.

ModelSystem
Codepackages/tabarena/src/tabarena/models/<key>/packages/tabarena/src/tabarena/systems/<key>/
Quick startrun_quickstart_tabarena_model.py, run_quickstart_beyondarena_model.pyrun_quickstart_tabarena_system.py, run_quickstart_beyondarena_system.py
Step-by-step guideadd-model skilladd-system skill
Testpytest -m models -k <Key>pytest tests/tabarena/systems/
πŸ“¬ Submission process β€” evaluate, open a PR, verification, leaderboard update

We accept methods their authors have already evaluated with the official pipeline and confirm the results by re-running them.

  1. Say how your method differs from the entrants already on the leaderboard. A new version of an existing method goes into the existing folder and supersedes the old entry rather than becoming a new one.
  2. Integrate it following the guide above and run the quick start.
  3. Evaluate it yourself on TabArena-Lite (subset="lite", the first split of every dataset) with HPO where applicable (the default plus about 25 random configurations), or on the BeyondArena core subset.
  4. Open a pull request; the template asks for the expected files, the results, the hardware and the entry-point script. You can also share the run's output directory (the expname folder with the results.pkl files) so we can verify and integrate the results directly.
  5. A maintainer reviews the pull request, then runs the method on the full task set on the benchmark hardware for the final entry. We are happy to help with the integration and the run.
  6. Maintainers verify that run against your Lite results, and the person you name in the template signs off on it, which marks the entry as verified.
  7. The results are processed, hosted and registered, and the pull request is merged.
  8. The leaderboard is regenerated from the hosted results after the merge, usually within days.

Questions go through the issue forms: one for model and system submissions, one for leaderboard or dataset questions that touch this code base. Pure leaderboard questions belong in the leaderboard's Community tab, dataset questions in Data Foundry. Anything else: mail@tabarena.ai.

More Documentation

There is no separate documentation site yet; the detailed reference lives in the repo and is written for humans and coding agents alike. AGENTS.md covers the architecture, the core data flow, models vs systems, entrant pools, caching, and the maintainer flows (processing and uploading results, releasing to PyPI). The skills in .claude/skills/ are step-by-step guides: add-model and add-system for integrating a new entrant, benchmark-model for running it on the benchmark cluster, upload-method and update-leaderboard for publishing results, and adapt-tabarena for building your own domain benchmark on top of TabArena. The examples are the runnable tour.

πŸͺ„ Installation

[!IMPORTANT] Requires Python 3.11–3.13 and uv.

TabArena is a uv workspace; its installable packages live under packages/ (tabarena, bencheval, tabflow_slurm). Install the tabarena package directly from packages/tabarena with the extras you need. The --prerelease=allow flag is required so uv resolves the pre-release dependency.

First clone the repo and create a virtual environment (one time):

git clone https://github.com/autogluon/tabarena.git
cd tabarena
uv venv --seed --python 3.12
source .venv/bin/activate

Then pick the install path that matches what you want to do:

πŸ“Š Evaluation only β€” leaderboards, metrics & plots, no model fitting

Loads cached results and computes/plots leaderboards & metrics (ELO, win-rates, ranks). Depends on autogluon.tabular (not the full AutoGluon meta-package) β€” no model-fitting libraries and no torch.

uv pip install --prerelease=allow -e "./packages/tabarena[plot]"
πŸš€ Benchmark β€” core set of models for benchmarking

Installs the core models used for standard benchmarking: tabpfn, tabicl, ebm, search_spaces, realmlp, tabdpt, tabm.

uv pip install --prerelease=allow -e "./packages/tabarena[benchmark]"
βž• Benchmark + Extended β€” core models plus the extended model set

The extended extra is experimental and may fail to resolve or install due to incompatible version requirements across model dependencies. Use it only if you specifically need every model in a single environment; otherwise prefer benchmark or benchmark plus one specific model.

Layers the extended model set (modernnca, xrfm, sap-rpt-oss, ...) on top of the core benchmark set.

uv pip install --prerelease=allow -e "./packages/tabarena[benchmark,extended]"

To install only one extended model on top of benchmark (recommended over extended when you only need a single extra model), pass its extra by name β€” for example, just xrfm:

uv pip install --prerelease=allow -e "./packages/tabarena[benchmark,xrfm]"
πŸ› οΈ Developer β€” editable AutoGluon + editable TabArena

Create a virtual environment in your workspace directory (it spans both repos cloned below, so .venv lives at the workspace root rather than inside either repo):

uv venv --seed --python 3.12 .venv
source .venv/bin/activate

Install editable AutoGluon and TabArena:

git clone https://github.com/autogluon/autogluon.git
./autogluon/full_install.sh

git clone https://github.com/autogluon/tabarena.git
uv pip install --prerelease=allow -e "./tabarena/packages/tabarena[benchmark]"

In PyCharm, mark packages/tabarena/src/ and each autogluon/src/ subdirectory as Sources Root so imports resolve.

πŸ§ͺ PyPI β€” experimental pre-releases, no clone needed

tabarena and bencheval are published to PyPI as pre-releases for projects that cannot depend on git URLs, so pass --pre (pip) or --prerelease=allow (uv). The core package and [plot] are complete. Model extras whose upstream package is only available from git (tabfm, sap-rpt-oss, exaone_tabular) are empty on PyPI; the model's install hint tells you what to install by hand. The git checkout above stays the recommended install.

uv pip install --prerelease=allow "tabarena[plot]"   # or: pip install --pre "tabarena[plot]"
uv pip install --prerelease=allow bencheval          # leaderboard engine only
πŸ“¦ Use TabArena as a dependency

Add one of the following to your project's dependencies:

# TabArena depends on a pre-release of AutoGluon, so allow pre-releases when installing
# (e.g. `uv pip install --prerelease=allow ...` or `pip install --pre ...`).
# Alternatively, pin AutoGluon to a specific pre-release (an exact `==` pin resolves a
# pre-release without the flag), e.g. add `"autogluon.tabular==1.5.1b20260626"`.

# From PyPI (experimental pre-releases; each tabarena release pins its matching bencheval):
"tabarena>=0.1.0a1"
# From git (tip of main; publishable to PyPI only as a source-only extra, see issue #495):
"tabarena @ git+https://github.com/autogluon/tabarena.git#subdirectory=packages/tabarena"

πŸ“¦ TabArena Artifacts

TabArena caches predictions, results, and leaderboards as downloadable artifacts so you can reproduce or extend any analysis without re-running the benchmark.

Artifact tiers, sizes, and examples

Artifacts download to ~/.cache/tabarena/ by default. Override the location with the TABARENA_CACHE environment variable.

Raw data is ~100 GB per method type. Point TABARENA_CACHE at a large disk before downloading it.

TierContentsSize / methodExample
Raw dataPer-child test predictions, full metadata, system info~100 GBinspect_raw_data_and_verify_splits.py
Processed dataMinimal data for HPO simulation, portfolios, leaderboards~10 GBinspect_processed_data.py
ResultsPer-config / HPO DataFrames (test error, val error, train time, inference time)<1 MBrun_generate_main_leaderboard.py
LeaderboardsAggregated ELO, win-rate, average rank, improvability<1 MBβ€”
Figures & PlotsGenerated from results and leaderboardsβ€”β€”

πŸ“„ Citation

If you use this code in a scientific publication, please cite the relevant paper(s): TabArena for the living IID benchmark, and BeyondArena for the beyond-IID benchmark.

TabArena

TabArena: A Living Benchmark for Machine Learning on Tabular Data Nick Erickson, Lennart Purucker, Andrej Tschalzev, David HolzmΓΌller, Prateek Mutalik Desai, David Salinas, Frank Hutter NeurIPS 2025, Datasets and Benchmarks Track

πŸ“„ arXiv Β· 🎀 NeurIPS poster & video

BibTeX

The entry uses year=2026 because NeurIPS'25 proceedings are published in 2026.

@article{erickson2026tabarena,
  title   = {TabArena: A Living Benchmark for Machine Learning on Tabular Data},
  author  = {Erickson, Nick and Purucker, Lennart and Tschalzev, Andrej and Holzm{\"u}ller, David and Desai, Prateek and Salinas, David and Hutter, Frank},
  journal = {Advances in Neural Information Processing Systems},
  volume  = {38},
  year    = {2026}
}

BeyondArena

Beyond IID: How General Are Tabular Foundation Models, Really? Lennart Purucker, Andrej Tschalzev, Nick Erickson, Gioia Blayer, David HolzmΓΌller, Alan Arazi, Alexander Pfefferle, Mustafa Tajjar, GaΓ«l Varoquaux, Frank Hutter

πŸ“„ arXiv

BibTeX
@misc{purucker2026beyondiid,
  title         = {Beyond IID: How General Are Tabular Foundation Models, Really?},
  author        = {Purucker, Lennart and Tschalzev, Andrej and Erickson, Nick and Blayer, Gioia and Holzm{\"u}ller, David and Arazi, Alan and Pfefferle, Alexander and Tajjar, Mustafa and Varoquaux, Ga{\"e}l and Hutter, Frank},
  year          = {2026},
  eprint        = {2606.30410},
  archivePrefix = {arXiv},
  primaryClass  = {cs.LG},
  url           = {https://arxiv.org/abs/2606.30410}
}

Relation to TabRepo

TabArena was built upon and now replaces TabRepo. To see details about TabRepo, the portfolio simulation repository, refer to tabrepo.md.

Research code

This repository contains research code intended for academic research and experimentation. It is not production-ready and should be reviewed, tested, and secured before use in production.

Contributors

Innixma

1,029 commits

LennartPurucker

235 commits

geoalgo

119 commits

dholzmueller

18 commits

Languages

Python

99.7%