Transformers How to use JayanAXHF/NCERT_9th_Sc_Ssc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="JayanAXHF/NCERT_9th_Sc_Ssc") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("JayanAXHF/NCERT_9th_Sc_Ssc", dtype="auto")