Views
No views yet
>>amh<< / >>tir<< / >>eng<< direction tagsinf events (fp16 loss-scaler overflow, confirmed benign -- loss/eval continued improving smoothly around both)| Direction | BLEU | chrF |
|---|---|---|
| en -> am | 24.699 | 33.655 |
| am -> en | 20.485 | 45.554 |
| en -> ti | 20.556 | 18.634 |
| ti -> en | 10.571 | 31.945 |
| Direction | BLEU | chrF |
|---|---|---|
| en -> tig | 11.713 | 19.405 |
| tig -> en | 17.628 | 32.187 |
tig->en zero-shot transfer is
genuinely reasonable (e.g. a source meaning "Technology has failed to ease
the conflict between man and nature" produces "Technology can't stop the
conflict between humans and nature" -- capturing the real meaning despite
zero Tigre training exposure). en->tig, by contrast, shows real
repetition-loop degeneration under beam search (e.g. "his stomach is weak"
produces a single Ge'ez word looping eight times) -- reported as observed, not
smoothed over. 43-45 pairs is a small qualitative check, not a
statistically robust benchmark; no larger English-Tigre parallel dataset
exists anywhere to draw a stronger conclusion from.1from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
2
3model = AutoModelForSeq2SeqLM.from_pretrained("Hailay/movoc-mt-en-am-ti")
4tokenizer = AutoTokenizer.from_pretrained("Hailay/movoc-mt-en-am-ti")
5
6text = ">>amh<< The weather is nice today."
7inputs = tokenizer(text, return_tensors="pt")
8out = model.generate(**inputs, max_new_tokens=64, num_beams=4)
9print(tokenizer.decode(out[0], skip_special_tokens=True))>>amh<< (target Amharic), >>tir<< (target Tigrinya --
also used for zero-shot Tigre, the closest trained relative), >>eng<<
(target English).SEED=42) and deterministic, but exact metric recovery is not
guaranteed:transformers==4.57.6, torch==2.9.0+cu128, datasets==5.0.0,
tokenizers==0.22.2, sacrebleu==2.6.0.pip install transformers torch sentencepiece1@inproceedings{teklehaymanot2025movoc,
2 title = {MoVoC: Morphology-Aware Subword Construction for Ge'ez Script Languages},
3 author = {Teklehaymanot, Hailay Kidu and Fazlija, Dren and Nejdl, Wolfgang},
4 booktitle = {Findings of the Association for Computational Linguistics: EMNLP 2025},
5 year = {2025},
6 url = {https://arxiv.org/abs/2509.08812}
7}