rajpurkar/squad_v2
Viewer • Updated • 142k • 34.2k • 251
How to use 123tarunanand/roberta-base-finetuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="123tarunanand/roberta-base-finetuned") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("123tarunanand/roberta-base-finetuned")
model = AutoModelForQuestionAnswering.from_pretrained("123tarunanand/roberta-base-finetuned")This model is a fine-tuned version of roberta-base 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 |
|---|---|---|---|
| 0.88 | 1.0 | 8160 | 0.8129 |
| 0.6643 | 2.0 | 16320 | 0.8567 |
| 0.5096 | 3.0 | 24480 | 0.9325 |