Instructions to use google/mt5-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use google/mt5-small with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("google/mt5-small") model = AutoModelForSeq2SeqLM.from_pretrained("google/mt5-small") - Notebooks
- Google Colab
- Kaggle
Finetunning for Sign Language
#9
by Snarky36 - opened
Hello I am very new to nlp and AI. For my forst small project I wanted to try to finetune a model for translating German text in Germna glosses of sign language. Do you think mt5 is good on doinf this kind of tasks? I tried to fine tune it with a custome dataset but all predictions are empty. I was wondering if anybody has some info or to give me direction in terms of what model should i choose and what type of nlp task do you think that Text to Gloss is.
Thank you for your help!