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