eyldlv commited on
Commit
21092d6
1 Parent(s): 10b356b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -12,7 +12,7 @@ Based on the SpaCy German model and trained on letters from the [Bullinger colle
12
 
13
  ```python
14
  import spacy
15
- nlp = spacy.load('./enhg_pipeline')
16
  doc = nlp('Ich hab euch uff gestert ouch by ainem mennlin von Strasburg geschriben mitt ainem brieff gen Bern gehörig.')
17
  for ent in doc.ents:
18
  print(ent.text, ent.label_)
 
12
 
13
  ```python
14
  import spacy
15
+ nlp = spacy.load('./enhg-ner')
16
  doc = nlp('Ich hab euch uff gestert ouch by ainem mennlin von Strasburg geschriben mitt ainem brieff gen Bern gehörig.')
17
  for ent in doc.ents:
18
  print(ent.text, ent.label_)