rajpurkar/squad
Viewer • Updated • 98.2k • 152k • 367
How to use Hansollll/distilbert-base-uncased with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="Hansollll/distilbert-base-uncased") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("Hansollll/distilbert-base-uncased")
model = AutoModelForQuestionAnswering.from_pretrained("Hansollll/distilbert-base-uncased")This model was trained from scratch 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 |
|---|---|---|---|
| 1.218 | 1.0 | 5533 | 1.1675 |
| 0.9496 | 2.0 | 11066 | 1.1107 |
| 0.7427 | 3.0 | 16599 | 1.1617 |