rajpurkar/squad
Viewer • Updated • 98.2k • 148k • 363
How to use stevemobs/deberta-base-finetuned-aqa-squad1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="stevemobs/deberta-base-finetuned-aqa-squad1") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("stevemobs/deberta-base-finetuned-aqa-squad1")
model = AutoModelForQuestionAnswering.from_pretrained("stevemobs/deberta-base-finetuned-aqa-squad1")This model is a fine-tuned version of stevemobs/deberta-base-finetuned-aqa on the squad dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 0.7662 | 1.0 | 7380 | 0.7575 |
| 0.5586 | 2.0 | 14760 | 0.7790 |