Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Languages:
Russian
Size:
10K - 100K
Tags:
emotion-classification
License:
File size: 8,924 Bytes
f07f89f 652820e f07f89f 652820e 2ec7dfd f07f89f b0e4b76 7130925 60f260a b0e4b76 60f260a f69c5f9 60f260a b0e4b76 60f260a f69c5f9 60f260a f07f89f 7130925 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
---
annotations_creators:
- crowdsourced
language_creators:
- found
language:
- ru
license:
- apache-2.0
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- text-classification
task_ids:
- sentiment-classification
- multi-label-classification
pretty_name: The Corpus for Emotions Detecting in Russian-language text sentences
(CEDR)
tags:
- emotion-classification
dataset_info:
- config_name: main
features:
- name: text
dtype: string
- name: labels
sequence:
class_label:
names:
'0': joy
'1': sadness
'2': surprise
'3': fear
'4': anger
- name: source
dtype: string
splits:
- name: train
num_bytes: 1418355
num_examples: 7528
- name: test
num_bytes: 350275
num_examples: 1882
download_size: 693026
dataset_size: 1768630
- config_name: enriched
features:
- name: text
dtype: string
- name: labels
sequence:
class_label:
names:
'0': joy
'1': sadness
'2': surprise
'3': fear
'4': anger
- name: source
dtype: string
- name: sentences
list:
list:
- name: forma
dtype: string
- name: lemma
dtype: string
splits:
- name: train
num_bytes: 4792366
num_examples: 7528
- name: test
num_bytes: 1182343
num_examples: 1882
download_size: 1822522
dataset_size: 5974709
---
# Dataset Card for [cedr]
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [GitHub](https://github.com/sag111/CEDR)
- **Repository:** [GitHub](https://github.com/sag111/CEDR)
- **Paper:** [ScienceDirect](https://www.sciencedirect.com/science/article/pii/S1877050921013247)
- **Leaderboard:**
- **Point of Contact:** [@sag111](mailto:[email protected])
### Dataset Summary
The Corpus for Emotions Detecting in Russian-language text sentences of different social sources (CEDR) contains 9410 comments labeled for 5 emotion categories (joy, sadness, surprise, fear, and anger).
Here are 2 dataset configurations:
- "main" - contains "text", "labels", and "source" features;
- "enriched" - includes all "main" features and "sentences".
Dataset with predefined train/test splits.
### Supported Tasks and Leaderboards
This dataset is intended for multi-label emotion classification.
### Languages
The data is in Russian.
## Dataset Structure
### Data Instances
Each instance is a text sentence in Russian from several sources with one or more emotion annotations (or no emotion at all).
An example for an instance from the dataset is shown below:
```
{
'text': 'Забавно как люди в возрасте удивляются входящим звонкам на мобильник)',
'labels': [0],
'source': 'twitter',
'sentences': [
[
{'forma': 'Забавно', 'lemma': 'Забавно'},
{'forma': 'как', 'lemma': 'как'},
{'forma': 'люди', 'lemma': 'человек'},
{'forma': 'в', 'lemma': 'в'},
{'forma': 'возрасте', 'lemma': 'возраст'},
{'forma': 'удивляются', 'lemma': 'удивляться'},
{'forma': 'входящим', 'lemma': 'входить'},
{'forma': 'звонкам', 'lemma': 'звонок'},
{'forma': 'на', 'lemma': 'на'},
{'forma': 'мобильник', 'lemma': 'мобильник'},
{'forma': ')', 'lemma': ')'}
]
]
}
```
Emotion label codes: {0: "joy", 1: "sadness", 2: "surprise", 3: "fear", 4: "anger"}
### Data Fields
The main configuration includes:
- text: the text of the sentence;
- labels: the emotion annotations;
- source: the tag name of the corresponding source
In addition to the above, the raw data includes:
- sentences: text tokenized and lemmatized with [udpipe](https://ufal.mff.cuni.cz/udpipe)
- 'forma': the original word form;
- 'lemma': the lemma of this word
### Data Splits
The dataset includes a set of train/test splits.
with 7528, and 1882 examples respectively.
## Dataset Creation
### Curation Rationale
The formed dataset of examples consists of sentences in Russian from several sources (blogs, microblogs, news), which allows creating methods to analyse various types of texts. The created methodology for building the dataset based on applying a crowdsourcing service can be used to expand the number of examples to improve the accuracy of supervised classifiers.
### Source Data
#### Initial Data Collection and Normalization
Data was collected from several sources: posts of the Live Journal social network, texts of the online news agency Lenta.ru, and Twitter microblog posts.
Only those sentences were selected that contained marker words from the dictionary of [the emotive vocabulary of the Russian language](http://lexrus.ru/default.aspx?p=2876). The authors manually formed a list of marker words for each emotion by choosing words from different categories of the dictionary.
In total, 3069 sentences were selected from LiveJournal posts, 2851 sentences from Lenta.Ru, and 3490 sentencesfrom Twitter. After selection, sentences were offered to annotators for labeling.
#### Who are the source language producers?
Russian-speaking LiveJournal and Tweeter users, and authors of news articles on the site lenta.ru.
### Annotations
#### Annotation process
Annotating sentences with labels of their emotions was performed with the help of [a crowdsourcing platform](https://yandex.ru/support/toloka/index.html?lang=en).
The annotators’ task was: “What emotions did the author express in the sentence?”. The annotators were allowed to put an arbitrary number of the following emotion labels: "joy", "sadness", "anger", "fear", and "surprise".
If the accuracy of an annotator on the control sentences (including the trial run) became less than 70%, or if the accuracy was less than 66% over the last six control samples, the annotator was dismissed.
Sentences were split into tasks and assigned to annotators so that each sentence was annotated at least three times. A label of a specific emotion was assigned to a sentence if put by more than half of the annotators.
#### Who are the annotators?
Only those of the 30% of the best-performing active users (by the platform’s internal rating) who spoke Russian and were over 18 years old were allowed into the annotation process. Moreover, before a platform user could be employed as an annotator, they underwent a training task, after which they were to mark 25 trial samples with more than 80% agreement compared to the annotation that the authors had performed themselves.
### Personal and Sensitive Information
The text of the sentences may contain profanity.
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
Researchers at AI technology lab at NRC "Kurchatov Institute". See the author [list](https://www.sciencedirect.com/science/article/pii/S1877050921013247).
### Licensing Information
The GitHub repository which houses this dataset has an Apache License 2.0.
### Citation Information
If you have found our results helpful in your work, feel free to cite our publication. This is an updated version of the dataset, the collection and preparation of which is described here:
```
@article{sboev2021data,
title={Data-Driven Model for Emotion Detection in Russian Texts},
author={Sboev, Alexander and Naumov, Aleksandr and Rybka, Roman},
journal={Procedia Computer Science},
volume={190},
pages={637--642},
year={2021},
publisher={Elsevier}
}
```
### Contributions
Thanks to [@naumov-al](https://github.com/naumov-al) for adding this dataset. |