Datasets:

Tasks:
Other
Languages:
French
Multilinguality:
monolingual
Size Categories:
unknown
Annotations Creators:
machine-generated
Source Datasets:
original
DOI:
License:
gcaillaut's picture
Update README.md
a87ba4c verified
metadata
annotations_creators:
  - machine-generated
language_creators: []
language:
  - fr
license:
  - wtfpl
multilinguality:
  - monolingual
pretty_name: test
size_categories:
  - unknown
source_datasets:
  - original
task_categories:
  - other
task_ids: []

Dataset Card for frwiki_good_pages_el

Dataset Description

Dataset Summary

This dataset contains featured and good articles from the French Wikipédia. Pages are downloaded, as HTML files, from the French Wikipedia website.

It is intended to be used to train Entity Linking (EL) systems. Links in articles are used to detect named entities.

Languages

  • French

Dataset Structure

{
    "title": "Title of the page",
    "qid": "QID of the corresponding Wikidata entity",
    "words": ["tokens"],
    "wikipedia": ["Wikipedia description of each entity"],
    "wikidata": ["Wikidata description of each entity"],
    "labels": ["NER labels"],
    "titles": ["Wikipedia title of each entity"],
    "qids": ["QID of each entity"],
}

The words field contains the article’s text splitted on white-spaces. The other fields are list with same length as words and contains data only when the respective token in words is the start of an entity. For instance, if the i-th token in words is an entity, then the i-th element of wikipedia contains a description, extracted from Wikipedia, of this entity. The same applies for the other fields. If the entity spans multiple words, then only the index of the first words contains data.

The only exception is the labels field, which is used to delimit entities. It uses the IOB encoding: if the token is not part of an entity, the label is "O"; if it is the first word of a multi-word entity, the label is "B"; otherwise the label is "I".