Skip to main content

TabPFN-Rel

PyPI version Python versions License Documentation Discord

TabPFN-Rel applies TabPFN to prediction tasks over relational databases. It follows relationships between tables, builds features with Deep Feature Synthesis, and uses TabPFN to predict outcomes for entities such as customers or sellers.

Documentation · Olist cookbook · Technical report

Try the Olist notebook

The task predicts whether a seller active in the past 30 days will receive no orders in the next 30 days. You can also read the walkthrough in the docs or run the local script.

Installation

Requires Python 3.11 or 3.12. Choose a backend:

pip install "tabpfn-rel[api]"    # Hosted inference
# Or: pip install "tabpfn-rel[local]"  # Local inference; GPU recommended

For hosted inference, authenticate before fitting:

from tabpfn_client import init

init()

For local inference, follow the model access guide.

Run the example as a local script

Prefer a Python script to a notebook? The Olist example includes the same database schema and prediction task as YAML files, and reports held-out ROC-AUC. It runs on your machine with either hosted or local inference.

Download the data and run the script

Clone the repository, then download the data with the Kaggle CLI (requires a Kaggle account and configured credentials):

git clone https://github.com/PriorLabs/tabpfn-rel.git
cd tabpfn-rel
uvx kaggle datasets download -d olistbr/brazilian-ecommerce -p data/olist --unzip
uv sync --extra api --group cpu
uv run --no-sync python -c "from tabpfn_client import init; init()"
OMP_NUM_THREADS=1 uv run --no-sync python examples/olist_seller_churn.py

The default fits one configuration through the hosted API. Add --n-trials 3 to try temporal tuning, or --data-dir /path/to/olist to use an existing download. Hosted fitting and prediction consume API quota.

For local inference, install with uv sync --extra local and run the script with --backend local.

Predict on your own database

The Relational Predictive Interface (RPI) makes TabPFN-Rel easier to use on your own database: define a prediction task, then call fit and predict. RPI is provided by relarena-core, which is installed automatically with TabPFN-Rel.

Define your tables, keys and timestamps in a database YAML file, then define the target and temporal splits in a task YAML file. The task-definition guide describes these formats; the Olist example provides complete files to adapt.

from tabpfn_rel import PredictiveContext, PredictiveQuery, TabPFNRel

context = PredictiveContext.from_yaml("task.yaml", data_dir="data/")
model = TabPFNRel(model="client")
model.fit(context, n_trials=0)
query = PredictiveQuery(entities="all", at_timestamp="test_timestamp")
predictions = model.predict(query)

Use model="local" for local inference. n_trials=0 (the default) fits the default configuration; a positive budget enables temporal tuning. Pass seed and cache_dir to fit to control tuning randomness and feature caching. predict reuses that cache unless given another cache_dir.

Both query fields are required. Use at_timestamp="test_timestamp" for the context cutoff or an explicit date for another prediction anchor. The database remains frozen at the context cutoff, including for later anchors, to follow RelArena's fixed-snapshot evaluation protocol and prevent post-cutoff data from entering predictions. See RelArena's temporal-validation protocol.

To benchmark TabPFN-Rel against other methods, see RelArena.

Development

uv sync --locked --group cpu
OMP_NUM_THREADS=1 uv run --no-sync pytest
uv run --no-sync pre-commit run --all-files
uv build

Tests cover feature generation, context selection, temporal tuning and prediction without model downloads or hosted API calls.

Release files for tabpfn-rel 0.0.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for tabpfn-rel 0.0.2
File Size Uploaded
tabpfn_rel-0.0.2.tar.gz 19.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for tabpfn-rel 0.0.2
File Interpreter ABI Platform
tabpfn_rel-0.0.2-py3-none-any.whl Python 3 none any Details

Total release size: 41.3 kB

Release files / tabpfn_rel-0.0.2.tar.gz

Download URL tabpfn_rel-0.0.2.tar.gz
Size 19.1 kB
Tags Source
SHA-256 checksum
How to use checksums
af42ae9eed4cfb5bb31c7821ace0eb92827cc80b6d4c15740c89792b97654d6a
BLAKE2b-256 checksum
How to use checksums
a8cec3f5e499170f4a629547394794cbe3bd1066e31f6cf834d6129156b46a02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / tabpfn_rel-0.0.2-py3-none-any.whl

Download URL tabpfn_rel-0.0.2-py3-none-any.whl
Size 22.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
b0f48141da7b1b8be49017aa2eeea8e43e368495f9b42f38498dfe172f3608d5
BLAKE2b-256 checksum
How to use checksums
4d859b4b675225fb0a1b11bd2a1652ef4bb56a3fe0e5459c01383d6393d531fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release history Release notifications | RSS feed

0.0.3

2 release files

This release

0.0.2 This release

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page