How to use google/byt5-small with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("google/byt5-small") model = AutoModelForSeq2SeqLM.from_pretrained("google/byt5-small")
Is byt5 good for text completion, the goal is to fine tune with pairs, giving a summary + structured data, output a 500 tokens text
Thanks
· Sign up or log in to comment