/WEXEA

Wikipedia EXhaustive Entity Annotator (LREC 2020)

Primary LanguagePythonApache License 2.0Apache-2.0

WEXEA

WEXEA is an exhaustive Wikipedia entity annotation system, to create a text corpus based on Wikipedia with exhaustive annotations of entity mentions, i.e. linking all mentions of entities to their corresponding articles.

WEXEA runs through several stages of article annotation and the final articles can be found in the 'final_articles' folder in the output directory. Articles are separately stored in a folder named after the first 3 letters of the title (lowercase) and sentences are split up leading to one sentence per line. Annotations follow the Wikipedia conventions, just the type of the annotation is added at the end.

Downloads

WEXEA for...

  1. English: https://drive.google.com/file/d/1Cd7KEzzjl5g83OuUNKASnDzn_yEDD0mE/view?usp=sharing
  2. German: https://drive.google.com/file/d/1-xRbcwMcOnabljqhq9ilzMurZn7FnNT4/view?usp=sharing
  3. French: https://drive.google.com/file/d/1AHAfBnbg7UW7tr3hdRqIpA6RWld9Z6C0/view?usp=sharing
  4. Spanish: https://drive.google.com/file/d/1DIqNdZ5rECalYhGmr6AhSwO55671Ivic/view?usp=sharing

These datasets can be used as-is. Each archive contains a single file with each article concatenated. Articles themselves contain original as well as new annotations of the following format:

  1. [[article name|text alias|annotation type]]
  2. [[text alias|CoreNLP NER type]]

The annotation type of format 1 can be ignored (type "annotation" corresponds to original annotations, all others are new). Annotations of format 2 are CoreNLP annotations without corresponding Wikipedia article.

Start CoreNLP toolkit

Download (including models for languages other than English) CoreNLP from https://stanfordnlp.github.io/CoreNLP/index.html

Start server:

java -mx16g -cp "<path to corenlp files>" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port 9000 -timeout 15000 -threads 6

Entity Linker

Entity Linker including models used from https://github.com/nitishgupta/neural-el.

Download resources from repository and adjust path to resources folder in src/entity_linker/configs/config.ini.

Run WEXEA

  1. Change language specific keyword variables in src/language_variables.py, depending on Wikipedia dump language.
  2. Install requirements from requirements.txt (Tensorflow only needed for neural EL).
  3. In config/config.json, provide path of latest wiki dump (xml file) and output path (make sure the output folder does not exist yet, it will be created).
  4. Make annotate.sh executable: "chmod 755 annotate.sh"
  5. In annotate.sh: Either use parser_4.py (with neural EL; English only) or parser_4_greedy.py (greedy EL).
  6. Run annotate.sh with ./annotate.sh

Visualization

server.py starts a server and opens a website that can be used to visualize an article with Wikipedia links (blue) and unknown entities (green).

WiNER evaluation

  1. Create directory 'wexea_evaluation'.
  2. Adjust directory names for output as well as dictionaries in src/winer.py and src/evaluation.py.
  3. Run winer.py in order to create a sample from WiNER's as well as WEXEA's articles.
  4. Run src/evaluation.py in order to create a file per article, which consists of WiNER addtional annotations (left) and WEXEA's additional annotations (right). Original annotations are removed in order to make the file more readable.

Files we used for evaluation (see Michael Strobl's PhD thesis), can be found in the data folder.

Hardware requirements

32GB of RAM are required (it may work with 16, but not tested) and it should take around 2-3d to finish with a full English Wikipedia dump (less for other languages).

Parsers

Time consumption was measured when running on a Ryzen 7 2700X with 64GB of memory. Data was read from and written to a hard drive. Runtimes lower for languages other than English.

Parser 1 (~2h 45 min / ~4.6GB memory in total / 20,993,369 articles currently):

Create all necessary dictionaries.

Parser 2 (~1h 45 mins with 6 processes / ~6,000,000 articles to process)

Removes most Wiki markup, irrelevant articles (e.g. lists or stubs), extracts aliases and separates disambiguation pages.

A number of processes can be set to speed up the parsing process of all articles. However, each process consumes around 7.5GB of memory.

Parser 3 (~2 days with 6 processes / ~2,700,000 articles to process)

Run CoreNLP NER and find other entities based on alias/redirect dictionaries.

Parser 4 (~2h / ~2,700,000 articles to process)

Run co-reference resolution and EL.

Citation

Please cite the following papers:

Original WEXEA publication:

Strobl, Michael, Amine Trabelsi, and Osmar R. Zaïane. "WEXEA: Wikipedia exhaustive entity annotation." Proceedings of the Twelfth Language Resources and Evaluation Conference. 2020.

Updated version (from which the linked datasets above are derived):

Strobl, Michael, Amine Trabelsi, and Osmar R. Zaiane. "Enhanced Entity Annotations for Multilingual Corpora." Proceedings of the Thirteenth Language Resources and Evaluation Conference. 2022.