Close Menu
NCIJ Network NCIJ Network
    What's Hot

    Verlume and SubCtech join forces to power up integrated subsea ops

    September 16, 2026

    Alex Eala firm on Asian Games participation despite threat of WTA fine | Tennis

    September 16, 2026

    EU chief backs plan for Canada to become ‘associate member’

    September 16, 2026
    Facebook X (Twitter) Instagram
    Trending
    • Verlume and SubCtech join forces to power up integrated subsea ops
    • Alex Eala firm on Asian Games participation despite threat of WTA fine | Tennis
    • EU chief backs plan for Canada to become ‘associate member’
    • Burnham and Trump expected to meet for first time next week as PM steps up presence on world stage | Andy Burnham
    • Amazon launches Alexa+ in India with Hindi support
    • Nums AI Releases Causilo: A Tabular Foundation Model That Tops TabArena Among Single Models
    • Critical ScreenConnect flaw now actively exploited in attacks
    • UK Backs Money Laundering Crackdown With $676M and 500 New Officers
    • About
      • Our Team
      • Editorial Policy
      • Editorial Independence
      • International Support
    • Trust & Standards
      • AI Usage Policy
      • Conflict of Interest Policy
      • Corrections Policy
      • Ethics Policy
      • Fact-Checking Policy
      • Source Protection
    • Get Involved
      • Guide for Sources
      • Support Independent Journalism
    • Legal
      • Cookie Policy
      • Privacy Policy
      • Terms of Use
    Facebook X (Twitter) Instagram
    NCIJ Network NCIJ Network
    Wednesday, September 16
    • Home
    • World
    • Ai
    • Business
    • Politics
    • Health
    • Crypto
    • Science
    • Technology
    • Cybersecurity
    • Defense & Security
    • Economy
    • Energy
    • Europe
    • More
      • Fact Check
      • Investigations
      • Opinion & Analysis
      • Environment
    NCIJ Network NCIJ Network
    Home»Artificial Intelligence

    Nums AI Releases Causilo: A Tabular Foundation Model That Tops TabArena Among Single Models

    NCIJ NETWNCIJ NETWORKBy NCIJ NETWNCIJ NETWORKSeptember 16, 2026 Artificial Intelligence No Comments4 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Nums AI has released Causilo, a pretrained tabular foundation model for classification and regression. Causilo comes with a scikit-learn interface, Apache-2.0 code and pretrained weights on Hugging Face. On TabArena, it has the highest Elo among single models for both classification and regression.

    Is it deployable? Yes, for research and evaluation today, on CUDA or CPU. Commercial, production and hosted API use need a separate license from Nums AI.

    What Causilo Does

    Causilo is an in-context learning model. Calling fit does not update the pretrained weights. It stores the training rows as context and predicts query rows in one forward pass. According to its TabArena submission, Nums AI pretrained Causilo only on synthetic data, with no TabArena datasets.

    Inputs can be NumPy arrays or pandas DataFrames, including categorical features and missing values. Classification supports up to 10 classes. Regression returns mean predictions by default. Version 1.0.1 adds median and quantile outputs, based on 999 native quantiles.

    Architecture: Refinement, Compression, In-Context Learning

    Nums AI splits the network into 3 phases: refinement, compression and in-context learning. The released code and configs show how each phase works.

    Features are grouped in sets of 3. Each value is embedded with 16 learned sine and cosine frequencies. Missing values get their own learned vector.

    2 column stages summarize each feature group. In each, 128 latent slots read only the training rows and pass that summary to every row. Between the 2 column stages, a row stage lets feature groups interact through 4 latent tokens. It uses cross-attention instead of full self-attention, which Nums AI says keeps cost linear in feature count.

    A pooling block then compresses each row into a fixed 512-dimensional vector. Labels are added to the training rows. A 12-layer prediction block lets query rows attend to those labeled rows. Query rows cannot change the training context or each other.

    By default, 8 ensemble members share the same weights. Each one cycles through none, rank2gaussian, robust or power normalization, with seeded feature and class permutations.

    TabArena Results

    Nums AI used the official TabArena pipeline: 51 datasets and 816 Full splits, with 8 estimators and seed 42. A TabArena maintainer re-ran the full evaluation and got the same overall Elo of 1794.

    Task Causilo Elo Next best single model Causilo improvability
    Overall 1792.9 TabFM, 1764.4 0.0684
    Classification 1771.8 EXAONE Tabular, 1758.8 0.0875
    Regression 2032.6 TabFM, 1992.8 0.0125

    The field includes Google Research’s TabFM, LG AI Research’s EXAONE Tabular and Prior Labs’ TabPFN-3 (1636.2 overall).

    A few points help when reading these numbers:

    • The #1 positions exclude system entries. With systems included, the maintainer re-run placed Causilo 3rd of 88 overall.
    • On improvability, TabFM still leads overall and on classification. Causilo leads on regression.
    • The Elo confidence intervals at the top overlap, so the lead over TabFM and EXAONE Tabular is narrow.
    • Nums AI also lists Xiaomi-TabLDM and Amazon’s Mitra-v2 behind Causilo. Neither model appears in the benchmark files in Causilo’s repo.

    ScoringBench Results

    ScoringBench scores regression models with proper scoring rules such as CRPS, alongside RMSE and R². Nums AI submitted Causilo 1.0.1 on 101 datasets, 5 folds each, capped at 3,000 samples. Nums AI reports that Causilo ranks 1st by CRPS, R² and RMSE. The ScoringBench maintainer independently checked the results before committing them.

    Speed and Memory

    Nums AI also reran 3 models on 1 H100 80 GB GPU, with 8 CPU cores per job.

    Model Fit (s per 1k rows) Predict (s per 1k rows) GPU memory (GiB)
    Causilo 2.504 0.251 8.15
    TabICLv2 3.449 0.303 8.37
    TabPFN-3 4.18 0.686 0.88

    In this test, Causilo is fastest on both fit and predict. TabPFN-3 uses far less GPU memory. Setting use_kv_cache=True moves context work into fit, using more memory to speed up repeated predictions.

    Getting Started

    Causilo needs Python 3.10 to 3.12 and PyTorch 2.13 or newer. The first fit downloads the checkpoint automatically.

    # pip install causilo
    from causilo import CausiloClassifier, CausiloRegressor
    
    clf = CausiloClassifier(n_estimators=8, random_state=42)
    clf.fit(X_train, y_train)
    proba = clf.predict_proba(X_test)
    
    reg = CausiloRegressor()
    reg.fit(X_train, y_train)
    bands = reg.predict(X_test, output_type="quantiles", quantiles=[0.05, 0.5, 0.95])

    You can also try the Hugging Face demo Space.

    among Causilo Foundation model models Nums Releases single TabArena Tabular tops
    NCIJ NETWNCIJ NETWORK
    • Website

    Keep Reading

    ChatGPT pioneer launches Jev model for programmatic logic

    Prior Labs Releases TabPFN-3.5: A Tabular Foundation Model That Beats the Winning Otto Kaggle Solution With Default Settings

    Inside NVIDIA’s cuDNN Graph API: Fusion, Autotuning, and Plan Reuse with cuDNN Frontend

    Google Releases Gemini 3.8 Live and 3.8 Live Extended Thinking for Production Grade Voice Agents

    Pony.ai unveils autonomous electric truck for logistics fleets

    Salesforce and Nvidia’s new reasoning model is everything the AI labs should fear

    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    Verlume and SubCtech join forces to power up integrated subsea ops

    September 16, 2026

    Alex Eala firm on Asian Games participation despite threat of WTA fine | Tennis

    September 16, 2026

    EU chief backs plan for Canada to become ‘associate member’

    September 16, 2026

    Burnham and Trump expected to meet for first time next week as PM steps up presence on world stage | Andy Burnham

    September 16, 2026
    Latest Posts

    Two new compounds could reveal hidden drivers of Alzheimer’s disease

    August 4, 2026

    Marmot Researchers Turn to OnlyFans for Funding—And There Are Meme Coins Too

    August 4, 2026

    New Pass-ta-key attacks let malware hijack Google-synced passkeys

    August 4, 2026

    Subscribe to News

    Get the latest sports news from NewsSite about world, sports and politics.

    NCIJ Network is an independent digital news platform delivering trusted investigative journalism, European and global news, in-depth analysis, and fact-based reporting with accuracy, transparency, and integrity.

    Facebook X (Twitter) Instagram Pinterest YouTube

    Verlume and SubCtech join forces to power up integrated subsea ops

    September 16, 2026

    Alex Eala firm on Asian Games participation despite threat of WTA fine | Tennis

    September 16, 2026

    EU chief backs plan for Canada to become ‘associate member’

    September 16, 2026

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Type above and press Enter to search. Press Esc to cancel.