allenai/quoref
Updated • 1.34k • 10
How to use damapika/roberta-base_mod with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="damapika/roberta-base_mod") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("damapika/roberta-base_mod")
model = AutoModelForQuestionAnswering.from_pretrained("damapika/roberta-base_mod", device_map="auto")This model is a fine-tuned version of roberta-base 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.6272 | 1.0 | 1213 | 1.4654 |
| 1.0583 | 2.0 | 2426 | 1.4134 |
| 0.6854 | 3.0 | 3639 | 1.5400 |