telexed ~ c / bf94c025-ed1radar:40 · otherLIVE
← back
NO.
#bf94c025
Topic
OTHER
Source
GitHub Trending Weekly
Published
2026-05-12 03:10:14
Importance
★ 4/10 — radar 40
`TabPFN`: fast foundation model for tabular prediction
FIG-0091:1

`TabPFN`: fast foundation model for tabular prediction

A strong shortcut for classification and regression on structured data without feature scaling or one-hot encoding. GPU-first and best under 100k rows / 2k features, so it is worth testing for scoring or forecasting before building a heavier pipeline.

[ KEY POINTS ]
  1. pip install tabpfn gets you classifier and regressor defaults, with checkpoint download on first fit; setup is light for experiments.
  2. Skip scaling and one-hot encoding entirely. That cuts prep work and makes it attractive for messy product or business datasets.
  3. Inference is GPU-oriented: ~8GB VRAM works, 16GB helps on larger sets; CPU is only practical around <=1000 samples.
  4. Prediction should be batched. Repeated single-row predict calls recompute the training set and can become almost 100x slower.
  5. The project also points to TabPFN Client for hosted inference and extensions for SHAP, feature selection, outlier detection, and synthetic data use cases.
Originalgithub.com/PriorLabs/TabPFNRead original →

// related