Instructions to use Helsinki-NLP/opus-mt-en-es with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Helsinki-NLP/opus-mt-en-es 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="Helsinki-NLP/opus-mt-en-es")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Helsinki-NLP/opus-mt-en-es") model = AutoModelForSeq2SeqLM.from_pretrained("Helsinki-NLP/opus-mt-en-es") - Inference
- Notebooks
- Google Colab
- Kaggle
What's the best way to get the most accurate translations?
#5
by acraber - opened
I noticed at least for short translations, putting num_beams=1 in the model.generate call seems to be the way to go, but there's still something to be desired from the translations... Any other suggestions?
well, there is a tutorial for it and these are the settings he used, I dunno but maybe you can reach out to him
or test them out, and some A/B test with ur current configs
inputs = tokenizer.encode(text, return_tensors="pt")
outputs = model.generate(inputs, num_beams=4, max_length=50, early_stopping=True)
translated_text = tokenizer.decode(outputs[0], skip_special_tokens=True)