How to use 123Divyansh/ConsofIndia_Divyansh with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="123Divyansh/ConsofIndia_Divyansh")
# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("123Divyansh/ConsofIndia_Divyansh") model = AutoModelForQuestionAnswering.from_pretrained("123Divyansh/ConsofIndia_Divyansh")
How to fix it?