Instructions to use facebook/nllb-200-distilled-1.3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/nllb-200-distilled-1.3B 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-200-distilled-1.3B")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("facebook/nllb-200-distilled-1.3B") model = AutoModelForMultimodalLM.from_pretrained("facebook/nllb-200-distilled-1.3B") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +2 -1
config.json
CHANGED
|
@@ -28,5 +28,6 @@
|
|
| 28 |
"torch_dtype": "float32",
|
| 29 |
"transformers_version": "4.21.0.dev0",
|
| 30 |
"use_cache": true,
|
| 31 |
-
"vocab_size": 256206
|
|
|
|
| 32 |
}
|
|
|
|
| 28 |
"torch_dtype": "float32",
|
| 29 |
"transformers_version": "4.21.0.dev0",
|
| 30 |
"use_cache": true,
|
| 31 |
+
"vocab_size": 256206,
|
| 32 |
+
"max_length": 200
|
| 33 |
}
|