Instructions to use Helsinki-NLP/opus-mt-en-ROMANCE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Helsinki-NLP/opus-mt-en-ROMANCE 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-ROMANCE")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Helsinki-NLP/opus-mt-en-ROMANCE") model = AutoModelForSeq2SeqLM.from_pretrained("Helsinki-NLP/opus-mt-en-ROMANCE") - Inference
- Notebooks
- Google Colab
- Kaggle
Is there a limitation with the input token length with Helsinki-NLP/opus-mt-en-ROMANCE model ?
#5
by Arsh25 - opened
Hello experts,
I am trying to do POC with Helsinki-NLP/opus-mt-en-ROMANCE model for language translation and I see the model starts truncating after 190+ tokens. Is there any max_length parameter we can explore to instruct the model to go beyond 190+ tokens? Do we have more insights on the token length during training time? Do you recommend breaking the input paragraphs into multiple lines using delimiters like period(.) and sending one line at a time for translation? Any other inputs to come out from the max token limitations would be highly appreciated.