Views
No views yet
jvonrad/olmo-2-7b-finetranslations, 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 (jvonrad/olmo-2-7b-finetranslations) | 44.37 | 2.80 | 58.56 | 17.49 | 42.75 | 17.02 | 8.32 |
| This model | 45.94 | 8.14 | 64.11 | 20.70 | 44.86 | 17.46 | 7.64 |
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("jvonrad/olmo-2-7b-finetranslations", dtype="bfloat16",
5 device_map="auto")
6model = PeftModel.from_pretrained(base, "jvonrad/OLMo-2-7B-CPT-DCO-10k")
7tok = AutoTokenizer.from_pretrained("jvonrad/OLMo-2-7B-CPT-DCO-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}