garifuna-nllb / README.md
arnoldramo's picture
Create README.md
381007c verified
metadata
language:
  - es
  - en
  - cab
license: mit
library_name: transformers
pipeline_tag: translation
tags:
  - nllb
  - garifuna
  - indigenous-languages
  - multilingual
model_name: Garifuna-Spanish-English NLLB MVP
base_model: facebook/nllb-200-distilled-600M

Garifuna-Spanish-English NLLB Translation

This is a fine-tuned version of Meta's NLLB-200 (600M) specialized for translation between Spanish, English, and Garifuna.

🌍 Supported Languages

  • Spanish (spa_Latn)
  • English (eng_Latn)
  • Garifuna (cab_Latn)

πŸ’‘ Improvements in this Version

  • Trilingual Support: Unlike the previous version, this model has been trained on a dataset that includes English pairings, allowing for broader translation capabilities.

πŸš€ Quick Start (Python)

from transformers import pipeline

model_id = "your-username/your-repo-name"

translator = pipeline(
    "translation", 
    model=model_id, 
    src_lang="eng_Latn", # Can also be "spa_Latn"
    tgt_lang="cab_Latn"
)

# Example: English to Garifuna
print(translator("Hello"))