This benchmark evaluates the discriminative performance of machine learning models on tabular classification tasks under data-scarce conditions (sample sizes ≤500). It specifically probes whether complex AutoML and deep learning approaches can consistently outperform simple baselines like logistic regression when training data is limited. Use when the user wants to benchmark on PMLBmini, or asks about evaluating this task. Reports AUC.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill pmlbmini-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pmlbmini Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-pmlbmini-eval)More formats (shields.io, HTML) on the badges page.
---
name: pmlbmini-eval
description: This benchmark evaluates the discriminative performance of machine learning models on tabular classification tasks under data-scarce conditions (sample sizes ≤500). It specifically probes whether complex AutoML and deep learning approaches can consistently outperform simple baselines like logistic regression when training data is limited. Use when the user wants to benchmark on PMLBmini, or asks about evaluating this task. Reports AUC.
metadata:
skill_kind: dataset_eval
source_arxiv: 2409.01635
bibtex_key: knauer2024pmlbmini
confidence: high
---
# pmlbmini-eval
> PMLBmini: A Tabular Classification Benchmark Suite for Data-Scarce Applications — Knauer et al. (2024) (arXiv:2409.01635, 2024)
## What this evaluates
This benchmark evaluates the discriminative performance of machine learning models on tabular classification tasks under data-scarce conditions (sample sizes ≤500). It specifically probes whether complex AutoML and deep learning approaches can consistently outperform simple baselines like logistic regression when training data is limited.
## Datasets
- **PMLBmini** — total ?; splits: train (-1), val (-1), test (-1); repo https://github.com/RicardoKnauer/TabMini
## Metrics
- `AUC` **(primary)** — range: [0, 1]
- Area under the receiver operating characteristic curve. Computed as the mean test AUC across folds in a stratified 3-fold cross-validation procedure to assess discriminative performance.
## Input / output format
**Input**: Tabular feature matrix with binary class labels.
**Output**: Predicted class probabilities or decision scores for each instance.
## Scoring recipe
```python
def compute_auc(y_true, y_pred_scores):
fpr, tpr, _ = roc_curve(y_true, y_pred_scores)
return auc(fpr, tpr)
fold_aucs = []
for train_idx, test_idx in StratifiedKFold(n_splits=3).split(X, y):
model.fit(X[train_idx], y[train_idx])
y_scores = model.predict_proba(X[test_idx])[:, 1]
fold_aucs.append(compute_auc(y[test_idx], y_scores))
mean_test_auc = np.mean(fold_aucs)
```
## Common pitfalls
- Complex models (AutoML/DL) often overfit in low-data regimes, making simple logistic regression a strong baseline that matches or exceeds them on many datasets.
- TabPFN's pretraining data overlaps with 45% of the benchmark datasets, which inflates its reported performance and requires careful interpretation.
- Strict runtime limits (1h for training AUC, 3h for test AUC) must be enforced to maintain comparability across methods; exceeding them breaks the evaluation protocol.
## Evidence (verbatim from paper)
> We measured the discriminative performance in terms of the AUC. The training AUC was recorded to assess overfitting and evaluated with a 1h runtime limit for each method per benchmark dataset, the mean test AUC with a 3h runtime limit via a stratified, 3-fold cross-validation procedure (i.e., 1h per fold).
## Citation
```bibtex
@misc{knauer2024pmlbmini,
title={PMLBmini: A Tabular Classification Benchmark Suite for Data-Scarce Applications},
author={Knauer et al. (2024)},
year={2024},
note={arXiv:2409.01635}
}
```
- arXiv: 2409.01635
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!