在 spacy 实体链接中显示来自 kb id 的实体描述
Displaying the description of entity from kb id in spacy entity linking
I have successfully trained a spacy entity linking model(obviously by
limiting the data).
my question is how to display the description
of entity from kb as output?
import spacy
nlp = spacy.load(r"D:\el model\nlp")
doc = nlp("Amir Khan is a great boxer")
ents = [(e.text, e.label_, e.kb_id_) for e in doc.ents]
print(ents)
正如 Sofie Van Landeghem(Spacy 实体链接代表)所说。
由于性能原因,描述目前未存储在 KB 本身中。但是,从处理过程中的中间结果来看,您应该有一个文件 entity_descriptions.csv,它以简单的表格格式将 WikiData ID 映射到它的描述。
I have successfully trained a spacy entity linking model(obviously by limiting the data).
my question is how to display the description of entity from kb as output?
import spacy
nlp = spacy.load(r"D:\el model\nlp")
doc = nlp("Amir Khan is a great boxer")
ents = [(e.text, e.label_, e.kb_id_) for e in doc.ents]
print(ents)
正如 Sofie Van Landeghem(Spacy 实体链接代表)所说。 由于性能原因,描述目前未存储在 KB 本身中。但是,从处理过程中的中间结果来看,您应该有一个文件 entity_descriptions.csv,它以简单的表格格式将 WikiData ID 映射到它的描述。