Instructions to use google/flan-t5-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use google/flan-t5-base with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("google/flan-t5-base") model = AutoModelForSeq2SeqLM.from_pretrained("google/flan-t5-base") - Notebooks
- Google Colab
- Kaggle
Couldn't generate bengali text with Flan Models.
#32
by asif00 - opened
I've tried using Flan here and on my terminal to generate Bengali text, but I couldn't, despite the model explicitly mentioning that Bengali is one of the supported languages. I'm curious about what I'm failing to understand. I also tried to generate Bengali text directly from the model card, but I got empty text there as well.
asif00 changed discussion title from Couldn't generate bengali test with Flan Models. to Couldn't generate bengali text with Flan Models.