Views
No views yet
{"params": <nested dict>, "cfg": <ModelConfig kwargs>, "step": int}.The training/inference code is not public. This repo is weights + metrics only. Enough is documented here and inmanifest.jsonto load and run a forward pass given a compatible model definition.
| Checkpoint | Training prior | CC18 AUC | TabArena-Lite AUC |
|---|---|---|---|
v1_d | TabICL mix_scm | 0.9332 | 0.8401 |
v1_g | TabPFN v1's own (open) prior | 0.9308 | 0.8341 |
v2_a | TabICLv2 graph SCM | 0.9322 | 0.8433 |
m6_v2 | TabICL mix_scm (3-stage arch) | — | 0.835 |
| Official TabPFN v1 | — | 0.9340 | — |
| Published (ICLR'23) | — | 0.934 ± 0.0086 | — |
v1_d matches the published v1 result to within the paper's own ±0.0086 std.1import pickle, jax
2ck = pickle.load(open("v1_d.params.pkl", "rb"))
3params, cfg, step = ck["params"], ck["cfg"], ck["step"]
4# feed to a compatible forward(params, ModelConfig(**cfg), X, y, feat_mask, train_size)manifest.json for each model's prior, metrics, and parameter count.