How to use bigscience/T0_single_prompt with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("bigscience/T0_single_prompt") model = AutoModelForSeq2SeqLM.from_pretrained("bigscience/T0_single_prompt")
what is the maximum sequence length that T0++ can handle? Is it ONLY 1024 or is there a version that can handle 2048?
· Sign up or log in to comment