CoolFace
Modelpublic

oddadmix/Emhotob-25M-Egyptian-English-v1

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes11downloads
Model Card

Emhotob-25M-Egyptian-English-v1 — Bidirectional Egyptian Arabic ↔ English (~25.3M params)

A 25.3M-parameter model that translates both ways between Egyptian colloquial Arabic (المصرية العامية) and English. A single set of weights serves both directions; a direction-specific system prompt selects which way to translate.

Finetuned from `oddadmix/Emhotob-25M`, a tiny Llama-architecture base (hidden 384, 8 layers, 6 heads, vocab 32000, tied embeddings).

Scaling study. This is one rung of a from-scratch Arabic scaling study that runs an identical SFT + eval recipe across bases from 0.5M to 50M parameters to locate where translation emerges. On the headline MSA↔Egyptian pair, output is degenerate at ≤1M, becomes real-but-rough at 5M, and usable at 10M+. See the sibling `oddadmix/50M-Egyptian-English-v1` for the fluent reference.

Evaluation

Deterministic held-out set of 3,000 pairs (seed=42), decoded greedily (do_sample=False, no repetition penalty), scored with sacreBLEU:

DirectionsacreBLEUchrF
English → Egyptian19.0146.67
Egyptian → English28.2948.01

Saved weights are the best checkpoint by validation loss (eval_loss = 1.227). 20 samples per direction with references are in `eval_bidirectional.json`.

Example translations

Real greedy-decoded outputs from the held-out set:

English → Egyptian

SourceModel outputReference
So what should I get you? Should I get you this or that? Just imagine the scene: sitting now, wearing a sleeveless underطب أجيبلك إيه؟ أجيبلك ده ولا ده؟ تخيل المنظر: قاعدين مع بعض، لابسين شوتات مش في نفس الحتة، كل حتة هتكون عندك في حياتك.طب أجيب لك إيه؟ أجيب لك دي ولا دي؟ تخيل كده المنظر، قاعد دلوقتي لابس فانلة بحمالات وبتاكل أحلى حتة لحمة ممكن تكلها في حي
Prayer niches (mihrabs)الصلاةمحاريب الصلاة

Egyptian → English

SourceModel outputReference
طب أجيب لك إيه؟ أجيب لك دي ولا دي؟ تخيل كده المنظر، قاعد دلوقتي لابس فانلة بحمالات وبتاكل أحلى حتة لحمة ممكن تكلها في حيSo, what should I get to you? Should I get you this or that? Imagine this view, he's sitting now wearing a fan with meatSo what should I get you? Should I get you this or that? Just imagine the scene: sitting now, wearing a sleeveless under
محاريب الصلاةRemark (Peace be upon him)Prayer niches (mihrabs)

Usage

ChatML format. Pick the system prompt for the direction you want:

python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "oddadmix/Emhotob-25M-Egyptian-English-v1"
tok = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, dtype=torch.bfloat16).to("cuda").eval()

SYSTEM = "أنت مترجم محترف. ترجم النص الإنجليزي إلى اللهجة المصرية العامية."

def translate(text, system=SYSTEM):
    prompt = (f"<|im_start|>system\n{system}<|im_end|>\n"
              f"<|im_start|>user\n{text.strip()}<|im_end|>\n<|im_start|>assistant\n")
    ids = tok(prompt, return_tensors="pt", add_special_tokens=False).to(model.device)
    if tok.bos_token_id is not None:
        bos = torch.tensor([[tok.bos_token_id]], device=model.device)
        ids["input_ids"] = torch.cat([bos, ids["input_ids"]], dim=1)
        ids["attention_mask"] = torch.cat([torch.ones_like(bos), ids["attention_mask"]], dim=1)
    out = model.generate(**ids, max_new_tokens=256, do_sample=False,
                         eos_token_id=tok.eos_token_id, pad_token_id=tok.pad_token_id)
    return tok.decode(out[0, ids["input_ids"].size(1):], skip_special_tokens=True).strip()

Training

  • —Base model: oddadmix/Emhotob-25M (Llama arch, hidden 384, 8 layers, 6 heads, vocab 32000, tied embeddings; 25,271,424 params after resizing for 2 ChatML tokens)
  • —Dataset: oddadmix/egyptian-translation-dataset-2.9-openai-batch
  • —Method: HuggingFace Trainer, ChatML, prompt-masked cross-entropy (loss only on the assistant turn). Each row is exploded into two training examples (one per direction).
  • —Hyperparameters: 3 epochs · effective batch 64 · LR 3e-4 (cosine, 5% warmup) · bf16 · max length 1024 · load_best_model_at_end on eval_loss.
  • —Eval split: 3,000 deterministic held-out pairs (seed=42), scored both directions.

<!-- BEGIN: leaderboard-en2egy-eval -->

Out-of-domain evaluation — Egyptian Arabic Translation Benchmark

The results above are in-domain: a held-out split of the same corpus this model was trained on. The numbers below are out-of-domain — the same model scored on the Egyptian Arabic Translation Benchmark (oddadmix/egyptian-arabic-translation-benchmark, 319 English→Egyptian pairs written by a different annotator with different orthographic conventions).

Expect these to be substantially lower than the in-domain scores. That gap is the generalization penalty, not a regression — both numbers are real, they measure different things.

MetricScore
BLEU (evaluate, 0–1 — leaderboard metric)0.0991
BLEU (sacrebleu, 0–100)9.91
chrF41.07
METEOR0.3223

Decoding is deterministic greedy (do_sample=False, no repetition penalty), using the exact ChatML prompt format the model was trained with — the same protocol as every other number in this study.

Where this rung sits

ModelParamsBLEU (hf)BLEU (sacre)chrFMETEOR
5M v15.2M0.00000.1913.000.0558
5M v25.2M0.01081.0822.190.1352
10M v111.2M0.03133.1328.520.1985
10M v210.9M0.03413.4131.600.2235
25M v1 (this model)25.3M0.09919.9141.070.3223
25M v225.3M0.08248.2440.290.3148
50M v1 (bidi)51.8M0.111311.1344.410.3482
50M v1 (uni)51.8M0.126112.6146.130.3559

Reading these numbers

BLEU understates quality on this set. Scoring is against a single reference, so a correct translation that picks a different valid word is penalized — e.g. فريش vs the reference's طازة for "fresh", or التليفون اللي ضاع vs تليفونها الضايع for "her lost phone". Both are good Egyptian; only one matches the reference. chrF and METEOR track perceived quality more closely here.

At 319 rows, differences of roughly 1–2 BLEU between adjacent rungs are within noise.

These are small models — 5M to 50M parameters, orders of magnitude below the large systems typically evaluated on this benchmark. The result of interest is the scaling curve and per-parameter efficiency, not absolute rank against models 100–1000× the size. <!-- END: leaderboard-en2egy-eval -->

Limitations

A ~25.3M model: reliable on short/common sentences, but drift, repetition, and errors appear on long or rare inputs. Gender is disambiguated only from context. For fluent translation use the 50M sibling.

License

Apache-2.0, inherited from the base model.