Views
No views yet
distilbert-base-uncasedlewtun/bert-base-uncased-finetuned-squad-v1datasets library as follows:1from datasets import load_dataset
2squad = load_dataset('squad')| Exact Match | F1 | |
|---|---|---|
| DistilBERT paper | 79.1 | 86.9 |
| Ours | 78.4 | 86.5 |
squad metric from datasets.1@misc{sanh2020distilbert,
2 title={DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter},
3 author={Victor Sanh and Lysandre Debut and Julien Chaumond and Thomas Wolf},
4 year={2020},
5 eprint={1910.01108},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}