-
Notifications
You must be signed in to change notification settings - Fork 370
/
solution_02_15.py
34 lines (27 loc) · 1.07 KB
/
solution_02_15.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import spacy
from spacy.matcher import PhraseMatcher
from spacy.tokens import Span
import json
with open("exercises/de/countries.json", encoding="utf8") as f:
COUNTRIES = json.loads(f.read())
with open("exercises/de/country_text.txt", encoding="utf8") as f:
TEXT = f.read()
nlp = spacy.load("de_core_news_sm")
matcher = PhraseMatcher(nlp.vocab)
patterns = list(nlp.pipe(COUNTRIES))
matcher.add("COUNTRY", patterns)
# Erstelle ein Doc und setze die vorhandenen Entitäten zurück
doc = nlp(TEXT)
doc.ents = []
# Iteriere über die Resultate
for match_id, start, end in matcher(doc):
# Erstelle eine Span mit dem Label "LOC"
span = Span(doc, start, end, label="LOC")
# Überschreibe die doc.ents und füge die Span hinzu
doc.ents = list(doc.ents) + [span]
# Wähle den Kopf-Token des Root-Tokens der Span aus
span_root_head = span.root.head
# Drucke den Text des Kopf-Tokens und den Text der Span
print(span_root_head.text, "-->", span.text)
# Drucke die Entitäten im Dokument
print([(ent.text, ent.label_) for ent in doc.ents if ent.label_ == "LOC"])