TabPFN-Rel
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.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| tabpfn_rel-0.0.3.tar.gz | 19.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| tabpfn_rel-0.0.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 41.3 kB
Release files / tabpfn_rel-0.0.3.tar.gz
| Download URL | tabpfn_rel-0.0.3.tar.gz |
|---|---|
| Size | 19.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
458d05235d230ee38e03ed3038b62db5edc2341dccb0ec2438ce0b186640b897
|
|
BLAKE2b-256 checksum How to use checksums |
0d3abb27457dfcf9630ea2e72a186dee4b7597fd3cb500dafc24d8d4316f942d
|
| 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.3-py3-none-any.whl
| Download URL | tabpfn_rel-0.0.3-py3-none-any.whl |
|---|---|
| Size | 22.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
44ce2e58bebce7549c7d12f82b18c5fd858e6cbb68e0a0bde0bdd2a122d75fa3
|
|
BLAKE2b-256 checksum How to use checksums |
e3940c10fc9cafc251940babd9afb0b22f523db10acaa00a5ff9fb496da27ec5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.12.11
|