Vibeleaderboard
Index / app
Visit github.com
Category
AI Tools
Rank
Type
APP
Builder
priorlabs
Latest release
v9.0.0
Date

About

A foundation model for tabular data that delivers strong predictions without per-dataset training.

What it does

TabPFN is a Python prediction library for structured datasets. Its pretrained transformer reads labeled examples and new rows together, then produces classification or regression results. The model learned from synthetic datasets, while its estimator-style interface handles preprocessing, ensembling, device selection, and inference.

Why it's ranked here

TabPFN offers an unusually direct route from a table to useful predictions, with familiar estimator interfaces and local PyTorch execution. Automatic device selection, multiple caching modes, and explicit memory handling deepen the package beyond a demo. The default weights' non-commercial license and strong preference for GPU hardware make the overall verdict positive but conditional.

What's good

It covers classification and regression through familiar estimator patterns. Users can pass raw tables without scaling or one-hot encoding. The package selects CUDA, Apple MPS, or CPU automatically, supports multiple devices, and adjusts memory-saving behavior by hardware and dataset shape. Its dedicated validation, licensing, and out-of-memory errors give practical recovery guidance.

Tradeoffs

The default model weights carry a non-commercial license and require one-time license acceptance for local downloads. First use fetches a checkpoint. GPU execution is recommended, while CPU use is limited to moderate datasets unless explicitly overridden. Prediction calls recompute the training set, so individual row calls waste substantial work. Supported dataset dimensions also depend on the selected checkpoint.

How to use it well

Use TabPFN for classification or regression experiments on bounded tabular datasets, especially when a GPU is available. Feed minimally processed data, predict rows in batches, and choose a caching mode that matches memory constraints and repeated-query needs. Explanations, outlier detection, synthetic data generation, broader class handling, and no-code use belong to separate extensions or products. Large production workloads may require the enterprise offering.

Technical notes+

The public exports in src/tabpfn/__init__.py include TabPFNClassifier, TabPFNRegressor, fitted-model persistence helpers, debug information, and CUDA or MPS out-of-memory exceptions. src/tabpfn/base.py resolves model versions, downloads missing checkpoints, selects precision, and constructs on-demand, preprocessing-cache, or key-value-cache inference engines. src/tabpfn/utils.py selects all available CUDA devices before MPS and CPU, with hardware checks for autocast. src/tabpfn/memory.py applies device-specific peak-memory heuristics. src/tabpfn/settings.py exposes TABPFN_-prefixed environment configuration. pyproject.toml declares setuptools packaging, Python 3.10 or newer, PyTorch 2.5 or newer, and a tests directory for pytest.

Observed

License
Code and TabPFN-2 weights use the Prior Labs License, described as Apache 2.0 with an additional attribution requirement; newer listed model weights use non-commercial licenses.
Primary language
Python, requiring Python 3.10 or newer.
Installation
Distributed as the tabpfn Python package and installed with pip.
Interface
Python library with classifier and regressor estimator interfaces; no CLI is described.
Execution platforms
Supports local inference on CUDA, Apple MPS, and CPU, with package classifiers for POSIX, Unix, and macOS.
Core runtime
Uses PyTorch and can automatically install a compatible PyTorch build.
Testing structure
Pytest is configured to discover tests from the tests directory.

Read from README.md, pyproject.toml, src/tabpfn/base.py, src/tabpfn/utils.py, src/tabpfn/errors.py, src/tabpfn/memory.py, src/tabpfn/__init__.py, src/tabpfn/settings.py, src/tabpfn/constants.py, src/tabpfn/inference.py, src/tabpfn/regressor.py.

Tech Stack

Python

Comments (0)

No comments yet

Editorially curated, with community endorsements as a secondary signal. Corrections welcome.