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

← All models

autogluon_mitra-classifier

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-classification

Mitra Classifier

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

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 classifier, install AutoGluon by running:

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

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

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

# Load datasets
wine_data = load_wine()
wine_df = pd.DataFrame(wine_data.data, columns=wine_data.feature_names)
wine_df['target'] = wine_data.target

print("Dataset shapes:")
print(f"Wine: {wine_df.shape}")

# Create train/test splits (80/20)
wine_train, wine_test = train_test_split(wine_df, test_size=0.2, random_state=42, stratify=wine_df['target'])

print("Training set sizes:")
print(f"Wine: {len(wine_train)} samples")

# Convert to TabularDataset
wine_train_data = TabularDataset(wine_train)
wine_test_data = TabularDataset(wine_test)

# Create predictor with Mitra
print("Training Mitra classifier on classification dataset...")
mitra_predictor = TabularPredictor(label='target')
mitra_predictor.fit(
    wine_train_data,
    hyperparameters={
        'MITRA': {'fine_tune': False}
    },
   )

print("\nMitra training completed!")

# Make predictions
mitra_predictions = mitra_predictor.predict(wine_test_data)
print("Sample Mitra predictions:")
print(mitra_predictions.head(10))

# Show prediction probabilities for first few samples
mitra_predictions = mitra_predictor.predict_proba(wine_test_data)
print(mitra_predictions.head())

# Show model leaderboard
print("\nMitra Model Leaderboard:")
mitra_predictor.leaderboard(wine_test_data)

A minimal example showing how to perform fine-tuning using the Mitra classifier:

mitra_predictor_ft = TabularPredictor(label='target')
mitra_predictor_ft.fit(
    wine_train_data,
    hyperparameters={
        'MITRA': {'fine_tune': True, 'fine_tune_steps': 10}
    },
    time_limit=120,  # 2 minutes
   )

print("\nMitra fine-tuning completed!")

# Show model leaderboard
print("\nMitra Model Leaderboard:")
mitra_predictor_ft.leaderboard(wine_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:3e46ae707999b80a07454e21a76d683df4562b67&dn=autogluon_mitra-classifier

Open magnet in torrent client · infohash 3e46ae707999b80a07454e21a76d683df4562b67

Files & hashes

PathSizesha1sha256
README.md3.3 KB (3,398 B)71e3e23c1ead0c85b59ebf0f6cb156c48c81227edff241257f8b5306844c5d1d7cc1ca409bda7638e25b3b634949e13f77c447ad
config.json86 B (86 B)f76086af294136ca8190057a3731c27b7726a06f2c96c24dd25f64e92753f6f2ba00cc7833b9923459403dcd8504e8700c0995df
model.safetensors288.7 MB (302,717,904 B)bf68c52a0f8eed60bef338db4b94ccaaea34b14ee06a055e91a3baeffc37f9cf634d9e69a27d904b6686131dc3b702f9c0126b19

Cite this release

Canonical URL
https://aiseedbank.org/models/autogluon_mitra-classifier/
Slug
autogluon_mitra-classifier
Infohash
3e46ae707999b80a07454e21a76d683df4562b67
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

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

Provenance

Upstream repositoryautogluon/mitra-classifier
Revision (pinned)c425e9fa0910a6be1c494321792e7ba2a1367b1a
Fetched at2026-09-03T21:00:10Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

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

apache-2.0288.7 MB (302,721,388 bytes)safetensorstabular-classificationpaper: 2510.21204