How to use dewdev/question_and_answer with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="dewdev/question_and_answer")
# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("dewdev/question_and_answer") model = AutoModelForQuestionAnswering.from_pretrained("dewdev/question_and_answer")
The community tab is the place to discuss and collaborate with the HF community!