Translation
Transformers
PyTorch
Safetensors
English
German
fsmt
text2text-generation
wmt19
facebook
Instructions to use facebook/wmt19-en-de with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/wmt19-en-de 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/wmt19-en-de")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("facebook/wmt19-en-de") model = AutoModelForSeq2SeqLM.from_pretrained("facebook/wmt19-en-de") - Inference
- Notebooks
- Google Colab
- Kaggle
Suddenly model does not work anymore
#7
by KimTang - opened
I found a fix by running the model on my own machine.
Clone the git repository, git checkout the previous commit, and run the model locally. This worked for me.
You can use revision parameter in from_pretrained to pass the commit hash and get the previous model.
Thank you all for reporting! We have reverted the PR for now (https://huggingface.co/facebook/wmt19-en-de/discussions/8) and will investigate.
