tabpfn-regress

Generate TabPFN regression baselines with out-of-fold predictions and ensembled submissions.

5|1|Updated Feb 25, 2026
One-click install
npx skills add https://github.com/dianaprior/kaggle-competition-agent-skill --skill tabpfn-regress
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: tabpfn-regress
Source: https://github.com/dianaprior/kaggle-competition-agent-skill/tree/main/.claude/skills/tabpfn-regress
Command: npx skills add https://github.com/dianaprior/kaggle-competition-agent-skill --skill tabpfn-regress

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

TabPFN-based regression benchmarks traditionally require manual, multi-step pipelines to establish baselines and generate submissions for Kaggle-like competitions. This Skill provides an end-to-end regression baseline, including OOF generation, first submission, and subsequent optimization with ensemble methods and post-processing rules.

Core Features & Use Cases

  • Regression baseline: a TabPFN v2.5 baseline with cross-validated out-of-fold predictions.
  • Ensembling & post-processing: gradient-boosting trees ensembles, clipping, target transforms, rank blending, and a robust submission workflow.
  • Use Case: After tabpfn-explore has prepared data and folds, produce a reproducible submission and CV log for leaderboard comparison.

Quick Start

Run the TabPFN regression baseline to generate OOF predictions and a first submission after data preparation and fold generation.

Frequently Asked Questions about tabpfn-regress

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate out-of-fold predictions and a submission file for tabular regression competitions?

To generate out-of-fold predictions and a submission for tabular regression, you need a cross-validated baseline pipeline. This Skill executes a TabPFN v2.5 baseline, producing OOF predictions and an initial submission file for leaderboard comparison after data preparation and fold generation are complete.

Can I ensemble TabPFN with gradient-boosting trees for Kaggle tabular tasks?

Yes, you can ensemble TabPFN with gradient-boosting trees for Kaggle tabular tasks. This Skill applies ensembling and post-processing rules, including GBT ensembles, clipping, target transforms, and rank blending, to optimize the baseline predictions into a final submission.

What data inputs do I need before running a TabPFN regression baseline?

Before running a TabPFN regression baseline, you need clean training features (X_train), target values (y_train), test features (X_test), and saved cross-validation folds. Data preparation and fold generation must be completed beforehand, and you need access to the TabPFN client with API budget checks.

How does post-processing with rank blending and clipping improve tabular regression submissions?

Post-processing with rank blending and clipping improves tabular regression submissions by combining multiple model outputs and constraining prediction values. These techniques, along with target transforms, refine ensemble predictions to reduce variance and align outputs with leaderboard target distributions.

Does TabPFN regression handle feature preprocessing and API budget limits automatically?

TabPFN regression handles feature preprocessing and API budget limits as part of its execution workflow. The Skill applies proper feature preprocessing to the provided clean datasets and performs API budget checks before accessing the TabPFN client to generate cross-validated predictions.

Why do my TabPFN cross-validation folds need to be saved before generating OOF predictions?

TabPFN cross-validation folds need to be saved before generating OOF predictions to ensure reproducible baseline results. The Skill requires predefined folds generated during the data exploration phase, applying them consistently to produce comparable out-of-fold predictions and submission logs for leaderboard tracking.