Views
No views yet
jvonrad/Qwen-2.5-7B-TED, 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/Qwen-2.5-7B-TED) | 46.67 | 3.97 | 61.12 | 25.19 | 60.61 | 38.97 | 23.77 |
| This model | 55.26 | 5.39 | 63.53 | 25.66 | 60.07 | 38.01 | 22.77 |
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("jvonrad/Qwen-2.5-7B-TED", dtype="bfloat16",
5 device_map="auto")
6model = PeftModel.from_pretrained(base, "jvonrad/Qwen-2.5-7B-CPT-SFT-10k")
7tok = AutoTokenizer.from_pretrained("jvonrad/Qwen-2.5-7B-CPT-SFT-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}