-
Notifications
You must be signed in to change notification settings - Fork 373
/
solution_02_15.py
34 lines (27 loc) · 1.08 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/pt/countries.json", encoding="utf8") as f:
COUNTRIES = json.loads(f.read())
with open("exercises/pt/country_text.txt", encoding="utf8") as f:
TEXT = f.read()
nlp = spacy.load("pt_core_news_sm")
matcher = PhraseMatcher(nlp.vocab)
patterns = list(nlp.pipe(COUNTRIES))
matcher.add("COUNTRY", patterns)
# Criar um doc e reiniciar (zerar) as entidades existentes
doc = nlp(TEXT)
doc.ents = []
# Iterar nos resultados do combinador
for match_id, start, end in matcher(doc):
# Criar uma partição Span com o marcador para "GPE"
span = Span(doc, start, end, label="GPE")
# Atualizar doc.ents com essa partição
doc.ents = list(doc.ents) + [span]
# Identificar o token inicial da partição
span_root_head = span.root.head
# Imprimir o texto to token inicial da partição e o texto da partição
print(span_root_head.text, "-->", span.text)
# Imprimir as entidades do documento
print([(ent.text, ent.label_) for ent in doc.ents if ent.label_ == "GPE"])