ksirts commited on
Commit
c04329b
1 Parent(s): e658cb8

Update to README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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 AutoTokenizer, AutoModelForTokenClassification
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')