Views
No views yet
| Detail | Value |
|---|---|
| Base Model | facebook/nllb-200-distilled-600M |
| Task | Machine Translation (English <-> Khasi) |
| Stage | Stage B - Full Silver Training |
| Checkpoint | checkpoint-12000 (Epoch 2.77/3.0) |
| Training Data | 138k parallel pairs |
| GPUs | 2x NVIDIA A100-SXM4-40GB |
| Metric | Score |
|---|---|
| BLEU | 53.75 |
| chrF | 67.30 |
| Eval Loss | 0.6585 |
1from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
2
3model = AutoModelForSeq2SeqLM.from_pretrained("techno-tuners/khasi-nllb-stage-b-checkpoint-12000")
4tokenizer = AutoTokenizer.from_pretrained("techno-tuners/khasi-nllb-stage-b-checkpoint-12000")
5tokenizer.src_lang = "eng_Latn"
6
7inputs = tokenizer("Hello, how are you?", return_tensors="pt")
8outputs = model.generate(**inputs, forced_bos_token_id=tokenizer.convert_tokens_to_ids("kha_Latn"), max_new_tokens=256)
9print(tokenizer.decode(outputs[0], skip_special_tokens=True))Note: This is a training checkpoint, not the final production model.