Stable AI, in collaboration with the group of Professor Peng Cui from Tsinghua University, has released LimiX-2—a foundational model with 400 million parameters designed to work with structured and tabular data. The weights and inference code are available on Hugging Face at stable-ai/LimiX-2, and the technical report is posted on arXiv under number 2609.17488.
One of the tested models is capable of performing classification, regression, and missing value imputation in a single forward pass, without requiring fine-tuning for a specific task.
Architecturally, LimiX-2 utilizes Contextual Mechanism Networks (CMNs), which were pre-trained using Contextually Conditional Masked Modeling. Instead of focusing on a traditional objective function tuned for tabular data that predicts a given goal based on context, CMNs are trained to discover the joint structure of dependencies between features and labels, which is closer to identifying how variables jointly generate data rather than tuning one column at a time.
Pre-training was conducted on synthetic datasets derived from structural causal models covering diverse graphs, mechanisms, and observation processes. The model was then scaled according to previously published LimiX scaling laws up to the 400M class.
On public leaderboards, the team demonstrated an Elo of 1935 on TabArena, 1432 on BCCO, and 1506 on TALENT. These results are claimed to be the first among comparable tabular foundation models and AutoGluon-style baseline models within the published protocols. The TabArena results also highlight strong performance in regression and classification splits; the model card additionally notes the recovery of the causal skeleton through feature attention, which encodes direct causal relationships.
Previous LimiX releases have covered hundreds of corporate structured data scenarios; LimiX-2 represents a scaled generation of CMN aimed at advancing this area of general tabular models further.
For data teams, the practical value lies in having a single open weight that can classify, regress, and impute data in heterogeneous tables without the need for retraining for each dataset. This is particularly useful where corporate tables do not resemble publicly available text corpora. However, it should be noted that the benchmarks are presented as Elo scores claimed by the authors under specific configurations; end-users in production environments will need to conduct checks on held-out samples and monitor for data leakage before replacing specialized AutoML pipelines.


