Olmo-3 7B supervised-fine-tuned with the variational optimizer
IVON, from the paper "Parameter Exploration for RLVR via
Variational Learning".
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("BayesRL/Olmo3-IVON-SFT-7B")
4tok = AutoTokenizer.from_pretrained("BayesRL/Olmo3-IVON-SFT-7B")
To use it as the warm-start prior for 3PO RLVR, load the IVON optimizer state via
IVON_INIT_METHOD=trained in the companion code's run_rl.sh.
1@misc{venkatkrishna2026parameterexploration,
2 title={Parameter Exploration for RLVR via Variational Learning},
3 author={Vatsal Venkatkrishna and Nico Daheim and Iryna Gurevych},
4 year={2026},
5 eprint={2608.09805},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/2608.09805},
9}