🚀 BERT-Medium fine-tuned on SQuAD v2
This is a BERT-Medium model created by Google Research. It has been fine-tuned on SQuAD 2.0 for the Q&A downstream task.
Model size (after training): 157.46 MB
✨ Features
Details of BERT-Small and its 'family'
Released on March 11th, 2020, this model is part of 24 smaller BERT models (English only, uncased, trained with WordPiece masking) referenced in Well-Read Students Learn Better: On the Importance of Pre-training Compact Models. These smaller BERT models are designed for environments with restricted computational resources. They can be fine-tuned in the same way as the original BERT models, and are most effective in the context of knowledge distillation, where the fine-tuning labels are produced by a larger and more accurate teacher.
Details of the downstream task (Q&A) - Dataset
SQuAD2.0 combines the 100,000 questions in SQuAD1.1 with over 50,000 unanswerable questions written adversarially by crowdworkers to look similar to answerable ones. To perform well on SQuAD2.0, systems must not only answer questions when possible, but also determine when no answer is supported by the paragraph and abstain from answering.
Dataset |
Split |
# samples |
SQuAD2.0 |
train |
130k |
SQuAD2.0 |
eval |
12.3k |
📦 Installation
The script for fine tuning can be found here
🔧 Technical Details
Model training
The model was trained on a Tesla P100 GPU and 25GB of RAM.
Results
Metric |
# Value |
EM |
65.95 |
F1 |
70.11 |
Raw metrics from benchmark included in training script
{
"exact": 65.95637159942727,
"f1": 70.11632254245896,
"total": 11873,
"HasAns_exact": 67.79689608636977,
"HasAns_f1": 76.12872765631123,
"HasAns_total": 5928,
"NoAns_exact": 64.12111017661901,
"NoAns_f1": 64.12111017661901,
"NoAns_total": 5945,
"best_exact": 65.96479407058031,
"best_exact_thresh": 0.0,
"best_f1": 70.12474501361196,
"best_f1_thresh": 0.0
}
Comparison
💻 Usage Examples
Basic Usage
from transformers import pipeline
qa_pipeline = pipeline(
"question-answering",
model="mrm8488/bert-small-finetuned-squadv2",
tokenizer="mrm8488/bert-small-finetuned-squadv2"
)
qa_pipeline({
'context': "Manuel Romero has been working hardly in the repository hugginface/transformers lately",
'question': "Who has been working hard for hugginface/transformers lately?"
})
{
"answer": "Manuel Romero",
"end": 13,
"score": 0.9939319924374637,
"start": 0
}
Advanced Usage
qa_pipeline({
'context': "Manuel Romero has been working remotely in the repository hugginface/transformers lately",
'question': "How has been working Manuel Romero?"
})
{ "answer": "remotely", "end": 39, "score": 0.3612058272768017, "start": 31 }
Created by Manuel Romero/@mrm8488 | LinkedIn
Made with ♥ in Spain