How to use Yale-LILY/reastap-large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("table-question-answering", model="Yale-LILY/reastap-large")
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Yale-LILY/reastap-large") model = AutoModelForSeq2SeqLM.from_pretrained("Yale-LILY/reastap-large")
Facing this error even
· Sign up or log in to comment