Instructions to use google/flan-t5-xxl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use google/flan-t5-xxl with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("google/flan-t5-xxl") model = AutoModelForSeq2SeqLM.from_pretrained("google/flan-t5-xxl") - Notebooks
- Google Colab
- Kaggle
Classifcation
#47
by SaraAmd - opened
the model outputs the input example for some of the data in my dataset rather than the class label while for most data it predicts the class label. I am wondering why? Is it because the model is uncertain about those examples?
give more detail about your code that I may be a help.