Instructions to use irenelizihui/MarianMT_UFAL_en_es with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use irenelizihui/MarianMT_UFAL_en_es with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("irenelizihui/MarianMT_UFAL_en_es") model = AutoModelForSeq2SeqLM.from_pretrained("irenelizihui/MarianMT_UFAL_en_es", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
1ea5a62
1
Parent(s): 84cd4fc
Upload tokenizer_config.json
Browse files- tokenizer_config.json +1 -0
tokenizer_config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"source_lang": "eng", "target_lang": "spa", "unk_token": "<unk>", "eos_token": "</s>", "pad_token": "<pad>", "model_max_length": 512, "sp_model_kwargs": {}, "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "Helsinki-NLP/opus-mt-en-es", "tokenizer_class": "MarianTokenizer"}
|