CoolFace
Modelpublic

luel/nllb-200-distilled-600M-ft-efi-en

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes16downloads
Model Card

Efik - English (NLLB-200 Distilled)

Fine-tuned NLLB-200 model for translating Efik -> English. Efik is not directly supported in NLLB, we use the Igbo language code `ibo_Latn` as a close proxy during training and inference.

Usage

python
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM

model_id = "luel/nllb-200-distilled-600M-ft-efi-en"

tokenizer = AutoTokenizer.from_pretrained(model_id, use_auth_token=True, src_lang="ibo_Latn")
model = AutoModelForSeq2SeqLM.from_pretrained(model_id, use_auth_token=True)

input_example = "Ami nko nko."
inputs = tokenizer(input_example, return_tensors="pt")

generated_ids = model.generate(
    **inputs, forced_bos_token_id = tokenizer.convert_tokens_to_ids("eng_Latn"), max_length=30
)
print(tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0])

Training details (summary)

ItemValue
Base modelfacebook/nllb-200-distilled-600M
DatasetDavlan/ibom-mt-en-efi
Scriptlafand-mt
Epochs8
Effective batch size32 (16 × 2 grad-accum)
Learning rate3e-5
Mixed precisionbf16
Early stoppingPatience = 3, min_delta (BLEU) = 0.001

Evaluation

Metricefi->en
BLEU38.6
chrF54.5

Limitations

  • —Using the Igbo token (ibo_Latn) as a stand-in for Efik may introduce lexical differences and tokenization mismatches.
  • —The model has not been extensively evaluated for bias, toxicity, or gender neutrality.