Views
No views yet
oddadmix/Emhotob-5M,
a tiny Llama-architecture base (hidden size 128, 5 layers, 4 heads, tied embeddings).Where translation "turns on." This model is part of a scaling study that runs the exact SFT + evaluation recipe ofoddadmix/50M-MSA-Egyptian-v1across shrinking base models. At 500K and 1M params the model collapses to a degenerate repeated token (BLEU ≈ 0). At 5M it genuinely translates — roughly, with drift and repetition, but with correct register-switching and real lexical choices. It is a working demonstration, not a production translator; for fluent output use the 50M sibling.
seed=42), decoded
greedily (do_sample=False, no repetition penalty), scored with sacreBLEU:| Direction | sacreBLEU | chrF |
|---|---|---|
| MSA → Egyptian | 4.36 | 25.43 |
| Egyptian → MSA | 4.24 | 25.08 |
eval_loss = 3.552, epoch 3 of 3;
loss keeps improving across all three epochs, unlike the sub-2M bases which plateau immediately).| Base | Params | eval_loss | BLEU (both dir.) | Behavior |
|---|---|---|---|---|
Emhotob-500K | 0.52M | 8.42 | ~0.01 | repeats a punctuation token |
Emhotob-1M | 1.07M | 7.39 | ~0.00 | repeats common function words |
Emhotob-5M (this) | 5.08M | 3.55 | ~4.3 | real, rough translation |
50M-2048-Emhotob | 51.8M | ~1.25 | ~24–26 | fluent |
| MSA input | Model output (Egyptian) | Reference |
|---|---|---|
| شكرًا جزيلًا لك، أنت لطيف للغاية. | شكرًا على اللي أنا حلو جدًا. | شكراً جداً، إنت طيب قوي. |
| ليحفظ الله الجميع الذين لديهم أصدقاء مخلصون. | ربنا يبارك في كل الناس اللي هيبقى في ناس كتير. | ربنا يبارك لكل واحد عنده صاحب وافي… |
| Egyptian input | Model output (MSA) | Reference |
|---|---|---|
| شكراً جداً، إنت طيب قوي. | شكرًا لك، أنا سعيد جدًا. | شكرًا جزيلًا لك، أنت لطيف للغاية. |
| انا بس بحاول اطمن نفسي. ايه أسوأ حاجة ممكن تحصل؟ | أنا فقط أتفق على نفسي. ما هي مشكلة؟ | أنا فقط أحاول أن أطمئن نفسي… |
بس/إيه/هقولك one way, MSA فقط/ما هي
the other) but frequently drifts or repeats on longer inputs. 20 samples per direction with
references are in eval_bidirectional.json.1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model_id = "oddadmix/Emhotob-5M-MSA-Egyptian-v1"
5tok = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(model_id, dtype=torch.bfloat16).to("cuda").eval()
7
8SYS_TO_EGY = "أنت مترجم محترف. ترجم النص من اللغة العربية الفصحى إلى اللهجة المصرية العامية."
9SYS_TO_MSA = "أنت مترجم محترف. ترجم النص من اللهجة المصرية العامية إلى اللغة العربية الفصحى."
10
11def translate(text: str, system: str) -> str:
12 prompt = (
13 f"<|im_start|>system\n{system}<|im_end|>\n"
14 f"<|im_start|>user\n{text.strip()}<|im_end|>\n"
15 f"<|im_start|>assistant\n"
16 )
17 ids = tok(prompt, return_tensors="pt", add_special_tokens=False).to(model.device)
18 if tok.bos_token_id is not None: # training prepends BOS
19 bos = torch.tensor([[tok.bos_token_id]], device=model.device)
20 ids["input_ids"] = torch.cat([bos, ids["input_ids"]], dim=1)
21 ids["attention_mask"] = torch.cat([torch.ones_like(bos), ids["attention_mask"]], dim=1)
22 out = model.generate(**ids, max_new_tokens=256, do_sample=False,
23 eos_token_id=tok.eos_token_id, pad_token_id=tok.pad_token_id)
24 return tok.decode(out[0, ids["input_ids"].size(1):], skip_special_tokens=True).strip()
25
26print(translate("شكرًا جزيلًا لك، أنت لطيف للغاية.", SYS_TO_EGY))oddadmix/Emhotob-5M (Llama arch, hidden 128, 5 layers, 4 heads, vocab 32000,
tied embeddings; 5,080,704 params after resizing for 2 ChatML tokens)oddadmix/egyptian-msa-2.9-openai-bytedance-translations (132K rows, egyptian/msa columns)Trainer, ChatML, prompt-masked cross-entropy (loss only on the
assistant turn). Each row is exploded into two training examples (one per direction).
Two ChatML special tokens (<|im_start|>, <|im_end|>) were added and embeddings resized.load_best_model_at_end on eval_loss.seed=42), scored both directions.oddadmix/50M-MSA-Egyptian-v1. For the degenerate smaller points
in this study see oddadmix/Emhotob-500K-MSA-Egyptian-v1.