Orion Tabular Foundation Models
Collection
2 items
β’
Updated
Orion-BiX is an advanced tabular foundation model that combines Bi-Axial Attention with Meta-Learning capabilities for few-shot tabular classification. The model extends the TabICL architecture with alternating attention patterns and episode-based training.
The model is part of Orion, a family of tabular foundation models with various enhancements.
Input β tf_col (Set Transformer) β Bi-Axial Attention β tf_icl (ICL) β Output
Component Details:
from orion_bix.sklearn import OrionBiXClassifier
# Initialize and use
clf = OrionBiXClassifier()
clf.fit(X_train, y_train)
predictions = clf.predict(X_test)
This code will automatically download the pre-trained model from Hugging Face and use a GPU if available.
cd orion-bix
pip install -e .
pip install git+https://github.com/Lexsi-Labs/Orion-BiX.git
If you use Orion-BiX in your research, please cite:
@misc{bouadi25oriobix,
title={Orion-BiX: Bi-Axial Meta-Learning for Tabular In-Context Learning},
author={Mohamed Bouadi and Pratinav Seth and Aditya Tanna and Vinay Kumar Sankarapu},
year={2025},
}