Views
No views yet
allenai/OLMo-2-1124-7B, trained for the paper
Improving Cross-Lingual Factual Recall via Consistency-Driven Reinforcement
Learning. It is one arm of a controlled comparison in which SFT, DCO, CM-Align
and GRPO all see the same 10,000 facts from
jvonrad/PolyFact-Clean
across the same 12 languages, so the methods differ only in objective.| Model | PolyFact | TotCons | RankC | BMLAMA-53 | G-MMLU-Lite | KLAR seen | KLAR held-out |
|---|---|---|---|---|---|---|---|
Base (allenai/OLMo-2-1124-7B) | 44.43 | 1.72 | 57.29 | 17.89 | 44.45 | 24.56 | 13.30 |
| This model | 47.04 | 4.32 | 58.88 | 17.53 | 43.73 | 36.36 | 22.17 |
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("allenai/OLMo-2-1124-7B", dtype="bfloat16",
5 device_map="auto")
6model = PeftModel.from_pretrained(base, "jvonrad/OLMo-2-7B-CM-Align-10k")
7tok = AutoTokenizer.from_pretrained("jvonrad/OLMo-2-7B-CM-Align-10k")Question: {q}\nAnswer: with the
options hidden, matching evaluate/evaluate_crosslingual_consistency.py.1@misc{polyfact2026,
2 title = {Improving Cross-Lingual Factual Recall via Consistency-Driven
3 Reinforcement Learning},
4 author = {von Rad, Jonathan},
5 year = {2026},
6 eprint = {2606.06586},
7 archivePrefix = {arXiv}
8}