rajpurkar/squad
Viewer • Updated • 98.2k • 158k • 364
How to use Elaaaf/my-qa-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="Elaaaf/my-qa-model") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("Elaaaf/my-qa-model")
model = AutoModelForQuestionAnswering.from_pretrained("Elaaaf/my-qa-model")# Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("Elaaaf/my-qa-model")
model = AutoModelForQuestionAnswering.from_pretrained("Elaaaf/my-qa-model")Important note The inference in HuggingFace won't work, because there is a missing pre-processing step.
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="Elaaaf/my-qa-model")