rajpurkar/squad_v2
Viewer • Updated • 142k • 34.2k • 251
How to use ChuVN/bart-base-finetuned-squad2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="ChuVN/bart-base-finetuned-squad2") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("ChuVN/bart-base-finetuned-squad2")
model = AutoModelForQuestionAnswering.from_pretrained("ChuVN/bart-base-finetuned-squad2")This model is a fine-tuned version of facebook/bart-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.9981 | 1.0 | 16319 | 0.9607 |
| 0.7521 | 2.0 | 32638 | 1.0446 |