LoudlySoft commited on
Commit
765400a
1 Parent(s): a0a5168

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -1 +1,9 @@
1
- My first attempt at fine-tuning AllenAi's scibert_scivocab_uncased on SQuAD 2.0
 
 
 
 
 
 
 
 
 
1
+ My first attempt at fine-tuning AllenAi's scibert_scivocab_uncased on SQuAD 2.0
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")