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
Clean tokenizer_config.json
#16
by skwon - opened
Remove reference to ArthurZ's local directory. It might be better to set "special_tokens_map_file" to null and delete special_tokens_map.json, since the special tokens are already included via "additional_special_tokens".