File size: 408 Bytes
dc13642 765400a dc13642 765400a dc13642 765400a dc13642 765400a dc13642 |
1 2 3 4 5 6 7 8 9 10 11 |
## AllenAI's <i>scibert_scivocab_uncased</i> fine-tuned on SQuAD 2.0 evaluated with F1 = 86.85
#### To load the model:
```
from transformers import BertTokenizerFast
from transformers import BertForQuestionAnswering
tokenizer = BertTokenizerFast.from_pretrained("LoudlySoft/scibert_scivocab_uncased_squad")
model = BertForQuestionAnswering.from_pretrained("LoudlySoft/scibert_scivocab_uncased_squad")
``` |