Commit 路
dc13642
1
Parent(s): b62f734
Update model card
Browse files
README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
| 1 |
-
|
| 2 |
|
| 3 |
-
To load the model:
|
| 4 |
|
|
|
|
| 5 |
from transformers import BertTokenizerFast
|
| 6 |
from transformers import BertForQuestionAnswering
|
| 7 |
-
|
| 8 |
tokenizer = BertTokenizerFast.from_pretrained("LoudlySoft/scibert_scivocab_uncased_squad")
|
| 9 |
-
model = BertForQuestionAnswering.from_pretrained("LoudlySoft/scibert_scivocab_uncased_squad")
|
|
|
|
|
|
| 1 |
+
## AllenAI's <i>scibert_scivocab_uncased</i> fine-tuned on SQuAD 2.0 evaluated with F1 = 86.85
|
| 2 |
|
| 3 |
+
#### To load the model:
|
| 4 |
|
| 5 |
+
```
|
| 6 |
from transformers import BertTokenizerFast
|
| 7 |
from transformers import BertForQuestionAnswering
|
| 8 |
+
|
| 9 |
tokenizer = BertTokenizerFast.from_pretrained("LoudlySoft/scibert_scivocab_uncased_squad")
|
| 10 |
+
model = BertForQuestionAnswering.from_pretrained("LoudlySoft/scibert_scivocab_uncased_squad")
|
| 11 |
+
```
|