rajpurkar/squad_v2
Viewer • Updated • 142k • 35.5k • 251
How to use BaoKien/albert_squadv2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="BaoKien/albert_squadv2") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("BaoKien/albert_squadv2")
model = AutoModelForQuestionAnswering.from_pretrained("BaoKien/albert_squadv2")This model is a fine-tuned version of albert-base-v2 on the squad_v2 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 |
|---|---|---|---|
| No log | 1.0 | 5 | 4.7365 |
| No log | 2.0 | 10 | 4.3391 |
| No log | 3.0 | 15 | 4.1889 |