rajpurkar/squad
Viewer • Updated • 98.2k • 154k • 363
How to use autoevaluate/extractive-question-answering with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="autoevaluate/extractive-question-answering") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("autoevaluate/extractive-question-answering")
model = AutoModelForQuestionAnswering.from_pretrained("autoevaluate/extractive-question-answering")This model is a fine-tuned version of distilbert-base-uncased on the squad dataset. It achieves the following results on the evaluation set:
{'exact_match': 72.95175023651845,
'f1': 81.85552166092225,
'latency_in_seconds': 0.008616470915042614,
'samples_per_second': 116.05679516125359,
'total_time_in_seconds': 91.07609757200044}
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.263 | 1.0 | 5533 | 1.2169 |