Instructions to use facebook/mbart-large-50 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/mbart-large-50 with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("facebook/mbart-large-50") model = AutoModelForSeq2SeqLM.from_pretrained("facebook/mbart-large-50") - Notebooks
- Google Colab
- Kaggle
Why Finetuned Mbart for translation on specific language disable other languages ?
#11
by Wabbina - opened
Hello, I noticed that after finetuning Mbart (e.g French to hindi), all other languages are not taken into account. However, I was expecting the opposite. What should I do?
best regards,
Wab
how did you fine tune the model
I used "run_translation" code that can be found here https://github.com/huggingface/transformers/blob/main/examples/pytorch/translation/run_translation.py. In fact, I have simply followed instructions detailed in ReadMe file.