Instructions to use facebook/nllb-moe-54b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/nllb-moe-54b with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="facebook/nllb-moe-54b")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("facebook/nllb-moe-54b") model = AutoModel.from_pretrained("facebook/nllb-moe-54b", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Can You Extract single language from the model?
#9
by ewwink - opened
I don't have powerful GPU and ultra high speed internet to download, is there a way to extract specific language from the model?
for example I only need model to translate from English to Indonesian.
There's no way to do it, it's a single model handling all the languages at once.