rajpurkar/squad
Viewer • Updated • 98.2k • 214k • 462
How to use Albuch/albert-base-v2-finetuned-squad with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="Albuch/albert-base-v2-finetuned-squad") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("Albuch/albert-base-v2-finetuned-squad")
model = AutoModelForQuestionAnswering.from_pretrained("Albuch/albert-base-v2-finetuned-squad", device_map="auto")This model is a fine-tuned version of albert-base-v2 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.867 | 1.0 | 5540 | 0.8997 |
| 0.6439 | 2.0 | 11080 | 0.8932 |
| 0.4669 | 3.0 | 16620 | 0.9891 |