Views
No views yet

Input → tf_col (Set Transformer) → Bi-Axial Attention → tf_icl (ICL) → Output1from orion_bix.sklearn import OrionBiXClassifier
2
3# Initialize and use
4clf = OrionBiXClassifier()
5clf.fit(X_train, y_train)
6predictions = clf.predict(X_test)1from tabtune import TabularPipeline
2
3pipeline = TabularPipeline(
4 model_name="OrionBix", # use OrionBix through TabTune
5 tuning_strategy="inference", # zero-shot / in-context mode
6 tuning_params={"device": "cuda"} # or "cpu"
7)
8
9pipeline.fit(X_train, y_train)
10predictions = pipeline.predict(X_test)pip install tabtune1cd orion-bix
2pip install -e .pip install git+https://github.com/Lexsi-Labs/Orion-BiX.git1@misc{bouadi2025orionbix,
2 title={Orion-Bix: Bi-Axial Attention for Tabular In-Context Learning},
3 author={Mohamed Bouadi and Pratinav Seth and Aditya Tanna and Vinay Kumar Sankarapu},
4 year={2025},
5 eprint={2512.00181},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/2512.00181},
9}