AI DevelopmentNew Release8 min readPublished September 15, 2026

Seven benchmarks · one technical report · the authors' own numbers

TabPFN 3.5 Beats Boosted Trees: When to Use It on Your Data

Prior Labs' TabPFN-3.5 report claims first place on seven tabular benchmarks. What a tabular foundation model is, when to use it, and what the licence allows.

DA
Digital Applied Team
Research and practical guidance
Editorial dateSeptember 15, 2026
SourcePrior Labs report, Sep 14

For decades the best way to predict a number or a category from a spreadsheet was to train a gradient-boosted tree model on that spreadsheet. On September 14, 2026 Prior Labs published the technical report for TabPFN-3.5, a model that has already been trained and simply reads your table. The report ranks it first on all seven benchmarks it lists. The numbers are the authors' own, and the licence draws a line between trying it and shipping it.

This post is for two readers: the analyst or founder with a prediction problem the size of a spreadsheet, and the builder wiring a tabular model into an analytics agent. It explains what the model is, prints the benchmark table as the report gives it, and turns the report's own caveats into a decision. Every figure is from the report. We have run no benchmark of our own.

Key takeaways
  1. 01
    No training step, one forward pass.A tabular foundation model was pre-trained on synthetic tables. You hand it your rows and it predicts, with calibrated uncertainty, in one pass.
  2. 02
    First on seven benchmarks, by its authors' count.Mean win rate of 78 percent against the best other tabular foundation model and 89 percent against the best conventional model, datasets weighted equally.
  3. 03
    Tuned neural networks still lead on some slices.The report says tuned and ensembled MLPs keep the highest scores on grouped, temporal and large datasets, and that 3.5 narrows rather than closes the gap.
  4. 04
    Open weights are for evaluation only.Code is Apache 2.0. Weights are under a licence that permits testing and internal benchmarking but not commercial or production use, which needs a commercial licence.

01DefinitionsWhat a tabular foundation model is

Ordinary machine learning on a table works in two steps. You train a model on your rows, then use it to predict new rows. The training step is where the skill and the time go: choosing the model, tuning it, checking it does not overfit. A tabular foundation model skips that step. It was trained once, by its makers, on a large synthetic collection of generated tables, and learned a procedure for reading a table and predicting a missing column. When you use it, the rows you already know are the context and the rows you want predicted are the question, the way a language model reads a prompt. There is no fitting to your data in the usual sense.

The report states the practical consequences. TabPFN-3.5 accepts training sets of up to one million rows and, in its recommended limits, six thousand columns. It handles classification with many classes, returns a full predictive distribution rather than a point estimate, and supports cached inference in which the known rows are processed once and new rows are scored, in the report's words, "in well under a second". Its parameter count is 220 million, up from 53 million for classification and 58 million for regression in the previous release.

Why this matters to a business, not just a data scientist

Most business prediction problems are small. A few thousand customers with a churn flag, a few hundred deals with an outcome, a year of weekly sales by store. That is exactly the size where a tuned tree model needs a specialist to tune it and a foundation model needs nobody. The report's claim is that the second option is now also the more accurate one on most such tables. The rest of this post is about where that claim holds and where the report itself says it does not.

02ResultsThe seven benchmarks, as reported

The report's headline table lists seven public benchmarks, the rank of the best TabPFN-3.5 family member on each, and the share of dataset splits it won against the strongest other tabular foundation model and the strongest conventional model. Note the word "family". On four of the seven the ranked entry is the Thinking variant, which is available only through the paid API, not the open weights.

Source: Prior Labs, TabPFN-3.5 technical report, Table 1, dated September 14, 2026. Win rates are shares of splits won, datasets weighted equally. Ranked entry: Thinking on the first four, TabPFN-Rel (3.5) on RelArena-α, TabPFN-3.5 on TALENT and ScoringBench.
BenchmarkRankWin rate vs best other TFMWin rate vs best non-TFM
TabArena1 of 8957% (TabFM+)96% (RealMLP)
BeyondArena1 of 2983% (TabICLv2)79% (RealMLP)
STRABLE1 of 19798% (TabICLv2)98% (XGBoost)
MulTaBench1 of 1490% (TabICLv2)95% (TabM)
RelArena-α1 of 1257% (RT-PluRel)71% (KurveRSC)
TALENT1 of 3780% (TabICLv2)91% (CatBoost)
ScoringBench1 of 5278% (EXAONE)91% (RealMLP)
Mean178%89%

Win rate against the best conventional model, by benchmark

Prior Labs, TabPFN-3.5 technical report, Table 1, September 14, 2026. Authors' own evaluation.
STRABLEvs XGBoost
98%
TabArenavs RealMLP
96%
MulTaBenchvs TabM
95%
TALENTvs CatBoost
91%
ScoringBenchvs RealMLP
91%
BeyondArenavs RealMLP
79%
RelArena-αvs KurveRSC
71%

The lowest two bars are the ones to read. BeyondArena is the benchmark built to test tables that are not clean and independent: grouped and temporal splits, tiny and huge tables, text and high-cardinality columns. RelArena is relational data across linked tables. Those are the shapes most business data takes, and they are where the margin is thinnest.

03CaveatsWhere the report says it still trails

The report is unusually direct about the previous generation's weaknesses. Citing an earlier study, it says earlier tabular foundation models excelled on clean data but fell behind tuned conventional models on grouped or temporal splits, on tables with many rows or many columns, and on tables with text or high-cardinality columns. Its own framing of the new release is that on those regimes TabPFN-3.5 is "now competitive with heavily tuned gradient-boosted trees and MLPs". Competitive is not dominant, and the BeyondArena section says so in detail.

On the full BeyondArena set, the report says tuned and ensembled MLPs "retain the highest performance on grouped, temporal, and large datasets", while TabPFN-3.5 "substantially narrows these gaps". When the benchmark is restricted to tables of up to 100,000 rows, it says the model matches the best baselines on grouped and temporal data. It also notes that confidence intervals on the smaller slices are wide, so exact orderings there should be read cautiously. On speed, the core model runs up to twice as slow as TabPFN-3 on large training sets because its width was doubled; the Fast variant is up to three times faster than TabPFN-3, and up to six times faster than 3.5 itself, with a small loss of accuracy.

A grouped split means predicting for a group the model never saw in training, such as a new store or a new country. A temporal split means predicting later dates from earlier ones. If your problem is either of those, and your table is large, the report's own numbers say a well-tuned conventional model is still at least as good.

04DecisionsWhen to use it on your data

The routing below is ours, built on the limits and caveats the report states. Each row is a property of your data you can check before you run anything.

Under 100,000 rows, a random train/test split, numeric and categorical columns
Use it. This is the regime where the report's lead is widest and where a tuned tree model needs the most specialist effort to match it.
Use
Columns contain names, addresses, product descriptions or free text
Use it, with care about which variant. The open model handled STRABLE through a TF-IDF encoding; native text handling is in the Plus and Thinking variants on the paid API.
Use, check variant
You predict for new groups or later dates, and the table is over 100,000 rows
Compare before committing. The report says tuned MLPs still hold the top scores here. Run both on a held-out group or a later period and keep whichever wins.
Compare
Predictions must return in real time at volume
Use the Fast checkpoint or the API's cached inference, and measure. The report's sub-second figure is for scoring after the known rows are cached, not for a cold start.
Fast or API
The output will feed a product, a client deliverable or a commercial decision
A commercial licence is required. The open weights permit evaluation and internal benchmarking only. See the next section.
Licence first

For the two most common business cases, churn and customer value, the input the model needs is the same table a conventional approach needs, which we set out in our guide to predictive analytics for CLV and churn. Demand forecasting is the case to treat with most care, because it is a temporal split by definition; our demand forecasting guide explains why a held-out later period is the only honest test. The report does note that the general 3.5 checkpoint, with no time-series fine-tuning, beat the previous time-series-specific TabPFN on a forecasting benchmark.

05TermsThe licence, and what an agent gets

Section 4 of the report splits the release in two. The code, including the package that runs the models and the client SDK, is Apache 2.0. The weights for TabPFN-3.5 and TabPFN-3.5-Fast are under the TABPFN-3.5 License v1.0, which the report describes as permissive for academic use, research and evaluation in commercial settings. It explicitly allows testing, evaluation and internal benchmarking, so a company can download the model and try it on its own data without an agreement.

The restriction is equally explicit. The models, their derivatives and their outputs "cannot be used for commercial or production purposes", and the report lists what that includes: revenue-generating products, competitive benchmarking for procurement decisions, client deliverables, and using model outputs as inputs to internal commercial decision-making. That last item is broad. A dashboard that informs a pricing decision is, on the report's wording, a commercial use. For production the company offers a Commercial Enterprise License covering its managed API, SAP's generative AI hub, private-cloud deployment on AWS SageMaker and Azure AI Foundry, and custom deployments. The Plus and Thinking variants are only available under that licence.

Open weights
TabPFN-3.5 and TabPFN-3.5-Fast
Apache 2.0 code · TABPFN-3.5 License v1.0 weights

Download and run locally. Test, evaluate and benchmark internally. No commercial or production use, including outputs that feed commercial decisions.

Evaluate
Commercial licence
Managed API, marketplaces, private cloud
Adds Plus and Thinking variants

Production use, the proprietary inference engine, support and the two variants that account for the top ranks on five of the seven benchmarks. Pricing is not in the report.

Ship

For the agent builder, the appeal is mechanical. An analytics agent that has to answer "which of these accounts will churn" can call one endpoint with the table and get back a calibrated probability for each row, in one pass, with no training job to schedule and no model artefact to store. The report's description of cached inference, known rows processed once and new rows scored in under a second, is the property that makes it usable inside a conversational loop. Documentation for the package and the API is at Prior Labs' documentation. If you want that evaluation run on your own tables before you decide on a licence, our analytics team does it as a fixed-scope piece of work, with the grouped and temporal comparison the report itself recommends.

06Next stepThe lead is real on clean tables and thinner on yours

Put it into practice

Evaluate it on a held-out group or period before you license it

The open weights exist so you can find out whether the report's numbers hold on your data, and the licence says that is all they are for. Pick your most valuable prediction, hold out a group or a later period rather than a random slice, run TabPFN-3.5 against whatever you use today, and let the result decide whether a commercial licence is worth it. On clean tables under 100,000 rows the report suggests it usually will be.

Digital Applied

Find out what your data can predict before you buy a model.

We run the evaluation the report recommends on your own tables, with the split your business actually faces, and report which approach wins.

Model evaluationData preparationAgent integration
Your next project

Start with the prediction that changes a decision

  • Pick one target column
  • Hold out a group or a period
  • Compare against your current method
Questions and answers

Applying this post

No. The report's licence section says the weights, derivatives and outputs cannot be used for commercial or production purposes, which it defines to include revenue-generating products, client deliverables and outputs that feed commercial decisions. Testing, evaluation and internal benchmarking are allowed. Production needs the Commercial Enterprise License.
Digital Applied newsletter

Deep dives on AI, marketing and development.

Practical guides and fresh insights by email. No recycled takes.

Related dispatches

Continue reading

AI Development

Cloudflare Blocks AI Agents on Ad Pages: Which Bots Are Hit

From September 15, 2026 new ad-supported Cloudflare domains block AI agents on ad pages and refuse AI training by default. A 20-bot census of who is affected.

September 15, 2026 · 10 minRead
AI Development

Gemini 3.8 Live: Should a Voice Agent Think While Talking?

Google split its live voice model in two on September 15: one answers at once, one reasons while it speaks. Which to pick, and where each is available.

September 15, 2026 · 7 minRead
AI Development

Coding Agents Grew Anthropic's CI 25x: How the Fix Worked

Anthropic says coding agents raised its CI jobs 25x in six months. Three patches bought 70 days, 29 days and under a day. What the redesign teaches.

September 15, 2026 · 7 minRead
AI Development

AI Labs Say They Will Slow Down: What Was Actually Promised

Dario Amodei's pacing essay commits Anthropic to embedded outside evaluators. What is promised, what is only proposed, and what a model buyer should watch.

September 15, 2026 · 8 minRead
AI Development

AI Agent Governance: Policy and Compliance 2026 Guide

AI agent governance framework for enterprises — access control, audit trails, data residency, and compliance with EU AI Act and SOC 2 requirements.

May 23, 2026 · 20 minRead
AI Development

Google AI Plans: Free vs Plus vs Pro vs Ultra 2026

Google's AI subscription tiers after I/O 2026 — AI Plus $7.99, AI Pro $19.99, AI Ultra $100 (new), AI Ultra $200 (was $250). Feature matrix and decision tree.

May 23, 2026 · 14 minRead