REL is a modular Entity Linking package that is provided as a Python package as well as a web API. REL has various meanings - one might first notice that it stands for relation, which is a suiting name for the problems that can be tackled with this package. Additionally, in Dutch a 'rel' means a disturbance of the public order, which is exactly what we aim to achieve with the release of this package.
REL utilizes English Wikipedia as a knowledge base and can be used for the following tasks:
- Entity linking (EL): Given a text, the system outputs a list of mention-entity pairs, where each mention is a n-gram from text and each entity is an entity in the knowledge base.
- Entity Disambiguation (ED): Given a text and a list of mentions, the system assigns an entity (or NIL) to each mention.
This section elaborates on how a user may utilize our API. Steps include obtaining an API key and querying our API.
At the moment we do not require obtaining a key; please continue to the next step.
Users may access our API by using the example script below.
For EL, the user should leave the spans
field empty. For ED, however, the spans
field should be filled with a list of tuples, each tuple indicating he start position and length of a mention.
import requests
IP_ADDRESS = "https://rel.cs.ru.nl/api"
text_doc = "If you're going to try, go all the way - Charles Bukowski"
# Example EL.
document = {
"text": text_doc,
"spans": []
}
# Example ED.
document = {
"text": text_doc,
"spans": [(41, 16)]
}
API_result = requests.post("{}".format(IP_ADDRESS), json=document).json()
This section describes how to deploy REL on a local machine and setup the API.
Run the following command in a terminal to install REL:
pip install git+https://github.com/informagi/REL
The files used for this project can be divided into three categories. The first is a generic set of documents and embeddings that was used throughout the project. This folder includes the GloVe embeddings used by Le et al. and the unprocessed datasets that were used to train the ED model. The second and third category are Wikipedia corpus related files, which in our case either originate from a 2014 or 2019 corpus. Alternatively, users may use their own corpus, for which we refer to the tutorials.
Download Wikipedia corpus (2014)
Download Wikipedia corpus (2019)
To promote usage of this package we developed various tutorials. If you simply want to use our API, then we refer to the section above. If you feel one is missing or unclear, then please create an issue, which is much appreciated :)! The first two tutorials are for users who simply want to use our package for EL/ED and will be using the data files that we provide. The remainder of the tutorials are optional and for users who wish to e.g. train their own Embeddings.
- How to get started (project folder and structure).
- End-to-End Entity Linking.
- Evaluate on GERBIL.
- Deploy REL for a new Wikipedia corpus:
- Reproducing our results
- REL as systemd service
- Notes on using custom models
If you are using REL, please cite the following paper:
@inproceedings{vanHulst:2020:REL,
author = {van Hulst, Johannes M. and Hasibi, Faegheh and Dercksen, Koen and Balog, Krisztian and de Vries, Arjen P.},
title = {REL: An Entity Linker Standing on the Shoulders of Giants},
booktitle = {Proceedings of the 43rd International ACM SIGIR Conference on Research and Development in Information Retrieval},
series = {SIGIR '20},
year = {2020},
publisher = {ACM}
}
Please email your questions or comments to Mick van Hulst
Our thanks go out to the authors that open-sourced their code, enabling us to create this package that can hopefully be of service to many.