File size: 6,605 Bytes
2be279e
 
44b3705
2be279e
 
 
 
 
 
 
 
 
 
 
 
44b3705
2be279e
 
 
 
 
 
 
 
 
 
44b3705
2997265
2bcfbd6
2be279e
 
 
ceb0060
2be279e
 
 
 
 
ceb0060
2be279e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c36c65f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2be279e
 
 
 
44b3705
2be279e
 
 
97c9ccf
2be279e
 
44b3705
2be279e
 
44b3705
2be279e
 
44b3705
2bcfbd6
2be279e
 
 
44b3705
2be279e
 
 
44b3705
2be279e
 
44b3705
2be279e
 
 
 
 
 
 
 
 
 
 
44b3705
 
 
 
 
2be279e
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
---
license: other
license_name: tabpfn-3-license-v1.0
license_link: LICENSE
extra_gated_fields:
  Organization: text
  Role:
    type: select
    options:
    - Field practitioners
    - Researcher
    - Student
  Use-case: text
  May we contact you about future updates?: checkbox
extra_gated_button_content: Agree to license terms and send request to access repo.
extra_gated_description: "Model weights released under `tabpfn-3-license-v1.0`. This license is designed to be permissive for research and internal evaluation. It *explicitly allows* testing, evaluation, and internal benchmarking, so an organization can download the model and run preliminary assessments on its own datasets.\nThe key restriction is that the model, its derivatives, and its outputs cannot be used for any commercial or production purpose. This includes, but is not limited to, revenue-generating products, competitive benchmarking for procurement, client deliverables, or using the model’s results for internal commercial decision-making.\nFor all production use cases, we offer a *Commercial Enterprise License*. This provides access to our proprietary high-speed inference engine, dedicated support, integration tooling, and other internal models. Please contact us at sales@priorlabs.ai for commercial licensing inquiries."
pipeline_tag: tabular-classification
tags:
- chemistry
- biology
- finance
- legal
- climate
- medical
---
### Model Overview
TabPFN-3 is a transformer-based foundation model that uses in-context-learning to solve tabular prediction problems in a forward pass. 
Inference code can be found at [https://github.com/PriorLabs/TabPFN](https://github.com/PriorLabs/TabPFN).
More details can be found in the [Model Report](https://storage.googleapis.com/prior-labs-tabpfn-public/reports/TabPFN_3_model_report.pdf).

### Getting started
First, install the inference package:
```bash
pip install tabpfn
```

Fitting a classifier and predicting looks like this:

```python
from sklearn.datasets import load_breast_cancer
from sklearn.model_selection import train_test_split
from tabpfn import TabPFNClassifier

X, y = load_breast_cancer(return_X_y=True)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.5, random_state=42)

clf = TabPFNClassifier()
clf.fit(X_train, y_train)
prediction_probabilities = clf.predict_proba(X_test)
predictions = clf.predict(X_test)
print("Accuracy", accuracy_score(y_test, predictions))
```

For more examples (e.g. how to train a regressor), see the github repo: [https://github.com/PriorLabs/tabPFN](https://github.com/PriorLabs/tabPFN)!

### Specialized checkpoints

TabPFN-3 ships with default classification and regression checkpoints, plus a few experimental specialized variants. We recommend starting with the defaults — the variants can be useful in ensembling or HPO setups, or tried manually in the regime they were trained for. Their name suffixes indicate what we expect them to be good at.

The following specialized checkpoints are available:

| Checkpoint | Task | Specialization |
| --- | --- | --- |
| [`tabpfn-v3-classifier-v3_20260417_binary.ckpt`](https://huggingface.co/Prior-Labs/tabpfn_3/blob/main/tabpfn-v3-classifier-v3_20260417_binary.ckpt) | Classification | Specialized for binary classification for datasets with <200k rows |
| [`tabpfn-v3-classifier-v3_20260417_multiclass.ckpt`](https://huggingface.co/Prior-Labs/tabpfn_3/blob/main/tabpfn-v3-classifier-v3_20260417_multiclass.ckpt) | Classification | Specialized for multiclass classification for datasets with <200k rows |
| [`tabpfn-v3-regressor-v3_20260417_mediumdata.ckpt`](https://huggingface.co/Prior-Labs/tabpfn_3/blob/main/tabpfn-v3-regressor-v3_20260417_mediumdata.ckpt) | Regression | Specialized for regression for datasets with <100k rows and with alternative preprocessing |
| [`tabpfn-v3-regressor-v3_20260506_timeseries.ckpt`](https://huggingface.co/Prior-Labs/tabpfn_3/blob/main/tabpfn-v3-regressor-v3_20260506_timeseries.ckpt) | Regression / Time-series forecasting | Fine-tuned on synthetic time-series data; used by default in TabPFN-TS-3 |

To use one of these checkpoints, pass its filename via `model_path`:

```python
from tabpfn import TabPFNClassifier

clf = TabPFNClassifier(model_path="tabpfn-v3-classifier-v3_20260417_binary.ckpt")
```

### Developers & Affiliations
Developed by Prior Labs.

### Intended Use
Regression and classification tasks with up to 1M samples and ≤2000 features in structured tabular format.

### Not Intended Use
- Not suitable for unstructured data (text, images); use API version for textual features.
- Performance not guaranteed above 1M train samples or >2000 features.

### Model Architecture
Multi-stage transformer-based architecture with 24 main layers.

### Training Data and Priors
TabPFN-3 is trained purely on synthetic tabular tasks.

### Performance Benchmarks
Evaluated on public benchmarks such as TabArena and TALENT, the model yields SOTA results.
On proprietary benchmark collections, it yields SOTA results for datasets with <100k rows and datasets with 100k-1M rows and <200 features.


### Ethical Considerations
Having been trained purely on synthetic datasets, TabPFN-3 is free from dataset leakage from the pretraining stage.
However, like for any other tabular prediction method, when applied to high-risk use cases, users should ensure that the labelled data is free of biases.

### Limitations
Performance can degrade when applied to >1M data points and/or >2000 features.

### Licensing
Model weights released under tabpfn-3-license-v1.0.

The license is designed to be permissive for research and limited internal evaluation. It *explicitly allows* testing, evaluation, and internal benchmarking, so an organization can download the model and run preliminary assessments on its own datasets.
The key restriction is that the model, its derivatives, and its outputs cannot be used for any commercial or production purpose. This includes, but is not limited to, revenue-generating products, competitive benchmarking for procurement, client deliverables, or using the model’s results for internal commercial decision-making.
For all production use cases, we offer a *Commercial Enterprise License*. This provides access to our proprietary high-speed inference engine, dedicated support, integration tooling, and other internal models.
Please contact us at sales@priorlabs.ai for commercial licensing inquiries.

### Version
v1.0: initial release.

### Citation
```
@misc{TabPFN3,
      title={TabPFN-3},
      author={Prior Labs},
      year={2026},
      note={Coming soon}
}
```