autogluon / mitra-regressor-2

huggingface.co
Total runs: 11.1K
24-hour runs: 63
7-day runs: 418
30-day runs: 11.0K
Model's Last Updated: September 08 2026
tabular-regression

Introduction of mitra-regressor-2

Model Details of mitra-regressor-2

Mitra-v2 Regressor

Mitra-v2 regressor is a tabular foundation model that is pre-trained on purely synthetic datasets sampled from a mix of random regressors, including the new Hybrid SCM prior. It is the second generation of the Mitra regressor ( autogluon/mitra-regressor ), pre-trained with a 10x longer context, three times as many features, and an improved optimizer, and it replaces the scalar mean-squared-error head of Mitra-v1 with a 1,000-bin distributional head. 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 classification model is at autogluon/mitra-classifier-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 76.7 M parameters (attention across rows and across columns), pre-trained by incorporating an in-context learning paradigm. Regression is cast as classification over 1,000 target bins: the model predicts a distribution over bins and the point prediction is the mean of that distribution. Apart from this head the architecture is unchanged from Mitra-v1.

Usage

To use Mitra-v2 regressor, 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 regressor 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 call runs one bagged fine-tune:

import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.datasets import fetch_california_housing
from sklearn.metrics import root_mean_squared_error
from huggingface_hub import snapshot_download
from mitra_finetune import MitraFinetune

# Load dataset
housing_data = fetch_california_housing()
X = pd.DataFrame(housing_data.data, columns=housing_data.feature_names)
y = pd.Series(housing_data.target, name="target")
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
X_train, y_train = X_train.iloc[:2000], y_train.iloc[:2000]   # small subsample for a quick example

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

# Fine-tune and predict
model = MitraFinetune(checkpoint_dir=ckpt_dir, problem_type="regression")
model.fit(X_train, y_train)
pred = model.predict(X_test)
print("RMSE:", root_mean_squared_error(y_test, pred))

The mitra-finetune package is required for regression: stock AutoGluon's Mitra regressor expects the scalar head of Mitra-v1, whereas these weights carry the 1,000-bin head, which the package wires into AutoGluon at fit time.

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

Runs of autogluon mitra-regressor-2 on huggingface.co

11.1K
Total runs
63
24-hour runs
130
3-day runs
418
7-day runs
11.0K
30-day runs

More Information About mitra-regressor-2 huggingface.co Model

More mitra-regressor-2 license Visit here:

https://choosealicense.com/licenses/apache-2.0

mitra-regressor-2 huggingface.co

mitra-regressor-2 huggingface.co is an AI model on huggingface.co that provides mitra-regressor-2's model effect (), which can be used instantly with this autogluon mitra-regressor-2 model. huggingface.co supports a free trial of the mitra-regressor-2 model, and also provides paid use of the mitra-regressor-2. Support call mitra-regressor-2 model through api, including Node.js, Python, http.

mitra-regressor-2 huggingface.co Url

https://huggingface.co/autogluon/mitra-regressor-2

autogluon mitra-regressor-2 online free

mitra-regressor-2 huggingface.co is an online trial and call api platform, which integrates mitra-regressor-2's modeling effects, including api services, and provides a free online trial of mitra-regressor-2, you can try mitra-regressor-2 online for free by clicking the link below.

autogluon mitra-regressor-2 online free url in huggingface.co:

https://huggingface.co/autogluon/mitra-regressor-2

mitra-regressor-2 install

mitra-regressor-2 is an open source model from GitHub that offers a free installation service, and any user can find mitra-regressor-2 on GitHub to install. At the same time, huggingface.co provides the effect of mitra-regressor-2 install, users can directly use mitra-regressor-2 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

mitra-regressor-2 install url in huggingface.co:

https://huggingface.co/autogluon/mitra-regressor-2

Url of mitra-regressor-2

mitra-regressor-2 huggingface.co Url

Provider of mitra-regressor-2 huggingface.co

autogluon
ORGANIZATIONS

Other API from autogluon

huggingface.co

Total runs: 8.2M
Run Growth: -724.6K
Growth Rate: -8.89%
Updated:June 05 2026