Update README.md
Browse files
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('./
|
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_)
|