SAVRN
Search Contact SAVRN

Open-weight model · Tabular classification

mitra-classifier-2

by Autogluon autogluon/mitra-classifier-2

Mitra-v2 classifier is a tabular foundation model that is pre-trained on purely synthetic datasets sampled from a mix of random classifiers, including the new Hybrid SCM prior.

Parameters76M
Context
Weights302.7 MB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads37.2k

Runs On

What it takes to serve mitra-classifier-2 (76M parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 0.2 GB 0.2 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 0.1 GB 0.1 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 0.0 GB 0.0 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By Autogluon, published under apache-2.0, revision edada0d20759.

Mitra-v2 classifier is a tabular foundation model that is pre-trained on purely synthetic datasets sampled from a mix of random classifiers, including the new Hybrid SCM prior. It is the second generation of the Mitra classifier (autogluon/mitra-classifier), pre-trained with a 10x longer context, three times as many features, and an improved optimizer. On the TabArena and TALENT benchmarks it delivers state-of-the-art accuracy at the level of TabFM and EXAONE Tabular, while surpassing TabPFN-3 by a wide margin. The regression model is at autogluon/mitra-regressor-2, and the inference and fine-tuning code with our evaluation results is at autogluon/mitra-finetune. Mitra-v2 is based on a…

Read Autogluon's full model card

Mitra-v2 Classifier

Mitra-v2 classifier is a tabular foundation model that is pre-trained on purely synthetic datasets sampled from a mix of random classifiers, including the new Hybrid SCM prior. It is the second generation of the Mitra classifier (autogluon/mitra-classifier), pre-trained with a 10x longer context, three times as many features, and an improved optimizer. On the TabArena and TALENT benchmarks it delivers state-of-the-art accuracy at the level of TabFM and EXAONE Tabular, while surpassing TabPFN-3 by a wide margin. The regression model is at autogluon/mitra-regressor-2, and the inference and fine-tuning code with our evaluation results is at autogluon/mitra-finetune.

Architecture

Mitra-v2 is based on a 12-layer 2D Transformer of 75.7 M parameters (attention across rows and across columns), pre-trained by incorporating an in-context learning paradigm. The architecture is unchanged from Mitra-v1; the gains come from the scaled-up synthetic pre-training distribution and the optimizer.

Usage

To use Mitra-v2 classifier, install AutoGluon and the mitra-finetune package by running:

pip install uv
uv pip install "autogluon.tabular[mitra]>=1.6" "tabarena>=0.1.0"
uv pip install git+https://huggingface.co/autogluon/mitra-finetune

A minimal example showing how to fine-tune and predict with the Mitra-v2 classifier using the same recipe as our reported results (50-step fine-tuning with 8-fold bagging). The recipe fine-tunes and bags eight copies of the model and requires a CUDA GPU; each predict_proba or predict call runs one bagged fine-tune:

import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.datasets import load_wine
from huggingface_hub import snapshot_download
from mitra_finetune import MitraFinetune

# Load dataset
wine_data = load_wine()
X = pd.DataFrame(wine_data.data, columns=wine_data.feature_names)
y = pd.Series(wine_data.target, name="target")
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42, stratify=y)

# Download the Mitra-v2 classifier weights
ckpt_dir = snapshot_download("autogluon/mitra-classifier-2")

# Fine-tune and predict
model = MitraFinetune(checkpoint_dir=ckpt_dir, problem_type="classification")
model.fit(X_train, y_train)
proba = model.predict_proba(X_test)
pred = proba.argmax(axis=1)
print("Accuracy:", (pred == y_test.values).mean())

A minimal example showing how to perform inference with the Mitra-v2 classifier directly in AutoGluon (the weights are a drop-in replacement for the Mitra-v1 classifier):

from autogluon.tabular import TabularDataset, TabularPredictor

train_data = TabularDataset(pd.concat([X_train, y_train], axis=1))
test_data = TabularDataset(pd.concat([X_test, y_test], axis=1))

mitra_predictor = TabularPredictor(label="target")
mitra_predictor.fit(
    train_data,
    hyperparameters={
        "MITRA": {"hf_model": "autogluon/mitra-classifier-2", "fine_tune": False}
    },
)

mitra_predictor.leaderboard(test_data)

Set "fine_tune": True to fine-tune inside AutoGluon. Note that AutoGluon's stock defaults differ from the mitra-finetune recipe used for the reported benchmark numbers.

License

This project is licensed under the Apache-2.0 License.

Reference

Mitra-v2 Technical Report (Amazon, 2026), also available on the Hub.

@article{mitrav2_2026,
  title={{Mitra-v2} Technical Report},
  author={Tao, Yefan and Zhang, Xiyuan and Liu, Xinyi and Han, Boran and Maddix, Danielle and Fang, Haoyang and Han, Zhen and Gai, Jiading and Liu, Xuanqing and Bohlke-Schneider, Michael and Wang, Yuyang (Bernie) and Friedland, Gerald and Mah, Kevan and Lee, Chris and Kong, Chris},
  journal={arXiv preprint arXiv:2609.04540},
  year={2026}
}

The original Mitra:

@article{zhang2025mitra,
  title={Mitra: Mixed synthetic priors for enhancing tabular foundation models},
  author={Zhang, Xiyuan and Maddix, Danielle C and Yin, Junming and Erickson, Nick and Ansari, Abdul Fatir and Han, Boran and Zhang, Shuai and Akoglu, Leman and Faloutsos, Christos and Mahoney, Michael W and others},
  journal={arXiv preprint arXiv:2510.21204},
  year={2025}
}

Amazon Science blog: Mitra: Mixed synthetic priors for enhancing tabular foundation models

Identity and Version

Repository
autogluon/mitra-classifier-2
Publisher
Autogluon
Task
Tabular classification
Modality
Tabular
Library
Not stated by the source
Parameters
76M parameters
Languages
Not stated by the source
Revision
edada0d20759c58ada8c8605c25f22f6e98ea5f0
First published
2026-09-03
Last updated
2026-09-07

Files and Weights

4 files, 302.7 MB in total. The weights are 1 file totalling 302.7 MB in safetensors.

Weights1 file · 302.7 MB
Configuration1 file · 86 B
Documentation1 file · 4.8 KB
Repository1 file · 1.5 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights302.7 MB 5ffab0e2cf52
config.jsonConfiguration86 B
README.mdDocumentation4.8 KB
.gitattributesRepository1.5 KB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
302.7 MB
Download from Autogluon

Released by Autogluon through its official repository on Hugging Face. Read the license.

Built From

Memory Requirements

PrecisionWeights in memory
As published302.7 MB
16-bit0.2 GB
8-bit0.1 GB
4-bit0.0 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About mitra-classifier-2

How much GPU memory does mitra-classifier-2 need?

About 0.2 GB at 16-bit and 0 GB at 4-bit: the weights (76M parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run mitra-classifier-2 on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use mitra-classifier-2 commercially?

Yes. mitra-classifier-2 is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

Similar Models

Model · Tabular classification

mitra-classifier

Autogluon

Mitra classifier is a tabular foundation model that is pre-trained on purely synthetic datasets sampled from a mix of random classifiers. Mitra is based on a 12-layer Transformer of 72 M parameters, pre-trained by incorporating an in-context learning paradigm. To use Mitra classifier, install AutoGluon by running: A minimal example showing how to perform inference using the Mitra classifier: A minimal example showing how to perform fine-tuning using the Mitra classifier: This project is licensed under the Apache-2.0 License. Amazon Science blog: Mitra: Mixed synthetic priors for enhancing tabular foundation models

Open weights apache-2.0 76M parameters

Model · Tabular classification

mitra-classifier-1.1

Autogluon

Mitra classifier is a tabular foundation model that is pre-trained on purely synthetic datasets sampled from a mix of random classifiers. Mitra is based on a 12-layer Transformer of 72 M parameters, pre-trained by incorporating an in-context learning paradigm. To use Mitra classifier, install AutoGluon by running: A minimal example showing how to perform inference using the Mitra classifier: A minimal example showing how to perform fine-tuning using the Mitra classifier: This project is licensed under the Apache-2.0 License. Amazon Science blog: Mitra: Mixed synthetic priors for enhancing tabular foundation models

Open weights apache-2.0 76M parameters

RT-PluRel is a Relational Transformer checkpoint pair for in-context / few-shot entity prediction over multi-table relational databases (no per-task gradient training). Same architecture and file layout as stanford-star/rt-j — drop-in replacement. Architecture: ~85.6M blocks, dmodel 512, 8 heads, dff 2048 · text columns embedded with all-MiniLM-L12-v2 (dtext 384). Each folder contains model.safetensors (weights) and config.json (dims + text-embedding model). The paper/ subdirectory preserves the earlier RT-PluRel release:.pt checkpoints (12 blocks, dmodel 256, dff 1024) pretrained on synthetic relational databases generated by PluRel, plus the continued-pretraining and fine-tuned RelBench…

Open weights cc-by-nc-sa-4.0 86M parameters pytorch

Model · Tabular classification

DigitalEduTransformers

SnowFlash383935

Модель для соревнования DigitalEdu с использованием трансформеров. 9 эпох. Пример вывода: [False, True]

Open weights gpl-3.0 101M parameters transformers

Model · Tabular classification

TabSTAR

Alan Arazi

To fit a pretrained TabSTAR model to your own dataset, install the package: Paper: TabSTAR: A Foundation Tabular Model With Semantically Target-Aware Representations

Open weights cc-by-4.0 47M parameters