AI SeedbankHelp preserve open and free AI for humanity's future

← All models

autogluon_mitra-regressor

autogluon · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: apache-2.0 pipeline_tag: tabular-regression

Mitra Regressor

Mitra regressor is a tabular foundation model that is pre-trained on purely synthetic datasets sampled from a mix of random regressors.

Architecture

Mitra is based on a 12-layer Transformer of 72 M parameters, pre-trained by incorporating an in-context learning paradigm.

Usage

To use Mitra regressor, install AutoGluon by running:

pip install uv
uv pip install autogluon.tabular[mitra]   

A minimal example showing how to perform inference using the Mitra regressor:

import pandas as pd
from autogluon.tabular import TabularDataset, TabularPredictor
from sklearn.model_selection import train_test_split
from sklearn.datasets import fetch_california_housing

# Load datasets
housing_data = fetch_california_housing()
housing_df = pd.DataFrame(housing_data.data, columns=housing_data.feature_names)
housing_df['target'] = housing_data.target

print("Dataset shapes:")
print(f"California Housing: {housing_df.shape}")

# Create train/test splits (80/20)
housing_train, housing_test = train_test_split(housing_df, test_size=0.2, random_state=42)

print("Training set sizes:")
print(f"Housing: {len(housing_train)} samples")

# Convert to TabularDataset
housing_train_data = TabularDataset(housing_train)
housing_test_data = TabularDataset(housing_test)

# Create predictor with Mitra for regression
print("Training Mitra regressor on California Housing dataset...")
mitra_reg_predictor = TabularPredictor(
    label='target',
    path='./mitra_regressor_model',
    problem_type='regression'
)
mitra_reg_predictor.fit(
    housing_train_data.sample(1000), # sample 1000 rows
    hyperparameters={
        'MITRA': {'fine_tune': False}
    },
)

# Evaluate regression performance
mitra_reg_predictor.leaderboard(housing_test_data)

License

This project is licensed under the Apache-2.0 License.

Reference

@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

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:4b5a1f4ead20cff41e69ec46d1a01899ec3c4d54&dn=autogluon_mitra-regressor

Open magnet in torrent client · infohash 4b5a1f4ead20cff41e69ec46d1a01899ec3c4d54

Files & hashes

PathSizesha1sha256
README.md2.7 KB (2,751 B)8abd73d5d7040f6fed097b9ae832fbf3cd8f2b63e33da01205124b3ef5303c9ef3526e6de2329d5c5cf7c96d70bdec7c22273df8
config.json81 B (81 B)a41b536fb00611ee24a88203d16eee089db02c352bc1ed5047f7c25368245e8ad32540a5fa28940b1ec05d3f1f454a09ff5384c1
model.safetensors288.7 MB (302,683,140 B)e8b4727a3bcb8c0cf2b0d572e6b3f7d361af655bd8e75c62af0bec2fd404b0ad20a442d951d43ca6d331315cfcc0509b54f2c642

Cite this release

Canonical URL
https://aiseedbank.org/models/autogluon_mitra-regressor/
Slug
autogluon_mitra-regressor
Infohash
4b5a1f4ead20cff41e69ec46d1a01899ec3c4d54
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: autogluon_mitra-regressor.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryautogluon/mitra-regressor
Revision (pinned)5f277aa8f69042d39d6ac3612aed18bb9279bd95
Fetched at2026-09-03T21:00:16Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-03T21:00:21Z

apache-2.0288.7 MB (302,685,972 bytes)safetensorstabular-regressionpaper: 2510.21204