The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider removing the loading script and relying on automated data support (you can use convert_to_parquet from the datasets library). If this is not possible, please open a discussion for direct help.

Dataset Card for Collection3

Dataset Summary

Collection3 is a Russian dataset for named entity recognition annotated with LOC (location), PER (person), and ORG (organization) tags. Dataset is based on collection Persons-1000 originally containing 1000 news documents labeled only with names of persons.

Additional labels were obtained using guidelines similar to MUC-7 with web-based tool Brat for collaborative text annotation.

Currently dataset contains 26K annotated named entities (11K Persons, 7K Locations and 8K Organizations).

Conversion to the IOB2 format and splitting into train, validation and test sets was done by DeepPavlov team.

Supported Tasks and Leaderboards

[Needs More Information]

Languages

Russian

Dataset Structure

Data Instances

An example of 'train' looks as follows.

{
    "id": "851",
    "ner_tags": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 2, 0, 0, 0],
    "tokens": ['Главный', 'архитектор', 'программного', 'обеспечения', '(', 'ПО', ')', 'американского', 'высокотехнологичного', 'гиганта', 'Microsoft', 'Рэй', 'Оззи', 'покидает', 'компанию', '.']
}

Data Fields

  • id: a string feature.
  • tokens: a list of string features.
  • ner_tags: a list of classification labels (int). Full tagset with indices:
{'O': 0, 'B-PER': 1, 'I-PER': 2, 'B-ORG': 3, 'I-ORG': 4, 'B-LOC': 5, 'I-LOC': 6}

Data Splits

name train validation test
Collection3 9301 2153 1922

Dataset Creation

Curation Rationale

[Needs More Information]

Source Data

Initial Data Collection and Normalization

[Needs More Information]

Who are the source language producers?

[Needs More Information]

Annotations

Annotation process

[Needs More Information]

Who are the annotators?

[Needs More Information]

Personal and Sensitive Information

[Needs More Information]

Considerations for Using the Data

Social Impact of Dataset

[Needs More Information]

Discussion of Biases

[Needs More Information]

Other Known Limitations

[Needs More Information]

Additional Information

Dataset Curators

[Needs More Information]

Licensing Information

[Needs More Information]

Citation Information

@inproceedings{mozharova-loukachevitch-2016-two-stage-russian-ner,
  author={Mozharova, Valerie and Loukachevitch, Natalia},
  booktitle={2016 International FRUCT Conference on Intelligence, Social Media and Web (ISMW FRUCT)},
  title={Two-stage approach in Russian named entity recognition}, 
  year={2016},
  pages={1-6},
  doi={10.1109/FRUCT.2016.7584769}}
Downloads last month
24

Models trained or fine-tuned on RCC-MSU/collection3