Evaluates the out-of-the-box predictive performance of tree-based models, neural networks, and foundation models on a large-scale collection of real-world tabular datasets. It also analyzes how dataset metafeatures (e.g., size, feature distribution, target skewness) correlate with model success to identify which model category excels under specific data conditions. Use when the user wants to benchmark on OmniTabBench, or asks about evaluating this task. Reports performance score.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill omnitabbench-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Omnitabbench Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-omnitabbench-eval)More formats (shields.io, HTML) on the badges page.
---
name: omnitabbench-eval
description: Evaluates the out-of-the-box predictive performance of tree-based models, neural networks, and foundation models on a large-scale collection of real-world tabular datasets. It also analyzes how dataset metafeatures (e.g., size, feature distribution, target skewness) correlate with model success to identify which model category excels under specific data conditions. Use when the user wants to benchmark on OmniTabBench, or asks about evaluating this task. Reports performance score.
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.06814
bibtex_key: jiang2026omnitabbench
confidence: high
---
# omnitabbench-eval
> OmniTabBench: Mapping the Empirical Frontiers of GBDTs, Neural Networks, and Foundation Models for Tabular Data at Scale — Dihong Jiang et al. (2026) (arXiv:2604.06814, 2026)
## What this evaluates
Evaluates the out-of-the-box predictive performance of tree-based models, neural networks, and foundation models on a large-scale collection of real-world tabular datasets. It also analyzes how dataset metafeatures (e.g., size, feature distribution, target skewness) correlate with model success to identify which model category excels under specific data conditions.
## Datasets
- **OmniTabBench** — total 3030; splits: test (3030)
## Metrics
- `performance score` **(primary)** — range: other
- Standard tabular metrics: accuracy for classification tasks and root mean squared error (RMSE) for regression tasks. Exact formulas and conventions are detailed in Section 3.3 of the paper.
## Input / output format
**Input**: Tabular data containing numerical and categorical columns, with missing values imputed and numericals quantile-transformed. Categoricals are label-encoded or one-hot encoded depending on the model.
**Output**: Predicted class labels for classification or continuous values for regression.
## Scoring recipe
```python
if task == 'classification':
return np.mean(preds == gold)
else:
return np.sqrt(np.mean((preds - gold) ** 2))
```
## Common pitfalls
- Models are evaluated with default/standard configurations only; tuning is explicitly excluded to test out-of-the-box capability.
- TabPFN has hard constraints (≤10k samples, ≤500 features); evaluating it on larger datasets violates its design.
- Using a small number of datasets for evaluation causes rank oscillation and can lead to misleading model rankings.
## Evidence (verbatim from paper)
> We use the same metrics that quantify the difficulty of each dataset as described in Section 3.3 to evaluate the performance of selected models.
## Citation
```bibtex
@misc{jiang2026omnitabbench,
title={OmniTabBench: Mapping the Empirical Frontiers of GBDTs, Neural Networks, and Foundation Models for Tabular Data at Scale},
author={Dihong Jiang et al. (2026)},
year={2026},
note={arXiv:2604.06814}
}
```
- arXiv: 2604.06814
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!