allenai/quoref
Updated • 1.69k • 10
How to use damapika/distilbert-base-uncased_mod with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="damapika/distilbert-base-uncased_mod") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("damapika/distilbert-base-uncased_mod")
model = AutoModelForQuestionAnswering.from_pretrained("damapika/distilbert-base-uncased_mod", device_map="auto")This model is a fine-tuned version of damapika/distilbert-base-uncased_mod on the quoref 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 |
|---|---|---|---|
| 1.6873 | 1.0 | 1213 | 1.6969 |
| 1.1652 | 2.0 | 2426 | 1.8045 |
| 0.7953 | 3.0 | 3639 | 2.0147 |