Linked Entity Pipeline for spaCy
Project description
Spacy Entity Linker
Introduction
Spacy Entity Linker is a pipeline for spaCy that performs Linked Entity Extraction with Wikidata on a given Document. The Entity Linking System operates by matching potential candidates from each sentence (subject, object, prepositional phrase, compounds, etc.) to aliases from Wikidata. The package allows to easily find the category behind each entity (e.g. "banana" is type "food" OR "Microsoft" is type "company"). It can is therefore useful for information extraction tasks and labeling tasks.
The package was written before a working Linked Entity Solution existed inside spaCy. In comparison to spaCy's linked entity system, it has the following examples
- no extensive training required (string-matching is done on a database)
- knowledge base can be dynamically updated without retraining
- entity categories can be easily resolved
- grouping entities by category
It also comes along with a number of disadvantages:
- it is slower than the spaCy implementation due to the use of a database for finding entities
- no context sensitivity due to the implementation of the "max-prior method" for entitiy disambiguation
Use
import spacy
from SpacyEntityLinker import EntityLinker
#Initialize Entity Linker
entityLinker = EntityLinker()
#initialize language model
nlp = spacy.load("en_core_web_sm")
#add pipeline
nlp.add_pipe(entityLinker, last=True, name="entityLinker")
doc = nlp("I watched the Pirates of the Carribean last silvester")
#returns all entities in the whole document
all_linked_entities=doc._.linkedEntities
#iterates over sentences and prints linked entities
for sent in doc.sents:
sent._.linkedEntities.pretty_print()
#OUTPUT:
#https://www.wikidata.org/wiki/Q194318 194318 Pirates of the Caribbean Series of fantasy adventure films
#https://www.wikidata.org/wiki/Q12525597 12525597 Silvester the day celebrated on 31 December (Roman Catholic Church) or 2 January (Eastern Orthodox Churches)
EntityCollection
contains an array of entity elements. It can be accessed like an array but also implements the following helper functions:
pretty_print()
prints out information about all contained entitiesprint_super_classes()
groups and prints all entites by their super class
doc = nlp("Elon Musk was born in South Africa. Bill Gates and Steve Jobs come from the United States")
doc._.linkedEntities.print_super_entities()
#OUTPUT:
#human (3) : Elon Musk,Bill Gates,Steve Jobs
#country (2) : South Africa,United States of America
#sovereign state (2) : South Africa,United States of America
#federal state (1) : United States of America
#constitutional republic (1) : United States of America
#democratic republic (1) : United States of America
EntityElement
each linked Entity is an object of type EntityElement
. Each entity contains the methods
get_description()
returns description from Wikidataget_id()
returns Wikidata IDget_label()
returns Wikidata labelget_span()
returns the span from the spacy document that contains the linked entityget_url()
returns the url to the corresponding Wikidata itempretty_print()
prints out information about the entity elementget_sub_entities(limit=10)
returns EntityCollection of all entities that derive from the current entityElement (e.g. fruit -> apple, banana, etc.)get_super_entities(limit=10)
returns EntityCollection of all entities that the current entityElement derives from (e.g. New England Patriots -> Football Team))
Example
In the following example we will use SpacyEntityLinker to find find the mentioned Football Team in our text and explore other football teams of the same type
doc = nlp("I follow the New England Patriots")
patriots_entity=doc._.linkedEntities[0]
patriots_entity.pretty_print()
#OUTPUT:
#https://www.wikidata.org/wiki/Q193390
#193390
#New England Patriots
#National Football League franchise in Foxborough, Massachusetts
football_team_entity=patriots_entity.get_super_entities()[0]
football_team_entity.pretty_print()
#OUTPUT:
#https://www.wikidata.org/wiki/Q17156793
#17156793
#American football team
#organization, in which a group of players are organized to compete as a team in American football
for child in football_team_entity.get_sub_entities(limit=32):
print(child)
#OUTPUT:
#New Orleans Saints
#New York Giants
#Pittsburgh Steelers
#New England Patriots
#Indianapolis Colts
#Miami Seahawks
#Dallas Cowboys
#Chicago Bears
#Washington Redskins
#Green Bay Packers
#...
Entity Linking Policy
Currently the only method for choosing an entity given different possible matches (e.g. Paris - city vs Paris - firstname) is max-prior. This method achieves around 70% accuracy on predicting the correct entities behind link descriptions on wikipedia.
Note
The Entity Linker at the current state is still experimental and should not be used in production mode.
Performance
The current implementation supports only Sqlite. This is advantageous for development because it does not requirement any special setup and configuration. However, for more performance critical usecases, a different database with in-memory access (e.g. Redis) should be used. This may be implemented in the future.
Installation
To install the package run: pip install spacy-entity-linker
Afterwards, the knowledge base (Wikidata) must be downloaded. This can be done by calling
python -m spacyEntityLinker "download_knowledge_base"
This will download and extract a ~500mb file that contains a preprocessed version of Wikidata
TODO
- implement Entity Classifier based on sentence embeddings for improved accuracy
- implement get_picture_urls() on EntityElement
- retrieve statements for each EntityElement (inlinks + outlinks)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for spacy-entity-linker-0.0.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3698b729e81f121f6a919e22e8efb4a4a5318147fadcb2e6f66bc5ed12f9a3dc |
|
MD5 | 0d75f6ad91e716cb448357291b5d92b6 |
|
BLAKE2b-256 | 19f05189c85f439bbb55ffe9c529a1f0484f29f1f8fbe1b8b79b862f382b8a20 |
Hashes for spacy_entity_linker-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6618e6a833fa102f946e9d20252cc5eb0acad5e405ecf2faa9a382f5c3f48f2e |
|
MD5 | bf0944d813a63d5dc5deda563cb8bbc6 |
|
BLAKE2b-256 | a9286c8279e9c4d89128e4bf3fd93b2180d4c74fce2a96e244b258401937c027 |