Update to README.md
Browse files
README.md
CHANGED
@@ -9,7 +9,7 @@ EstBERT_NER is a fine-tuned EstBERT model that can be used for Named Entity Reco
|
|
9 |
You can use this model with Transformers pipeline for NER. Post-processing of results may be necessary as the model occasionally tags subword tokens as entities.
|
10 |
|
11 |
```
|
12 |
-
from transformers import
|
13 |
from transformers import pipeline
|
14 |
|
15 |
tokenizer = BertTokenizer.from_pretrained('tartuNLP/EstBERT_NER')
|
|
|
9 |
You can use this model with Transformers pipeline for NER. Post-processing of results may be necessary as the model occasionally tags subword tokens as entities.
|
10 |
|
11 |
```
|
12 |
+
from transformers import BertTokenizer, BertForTokenClassification
|
13 |
from transformers import pipeline
|
14 |
|
15 |
tokenizer = BertTokenizer.from_pretrained('tartuNLP/EstBERT_NER')
|