--- task_categories: - text-classification language: - ru pretty_name: GreenRu size_categories: - n<1K --- ### Dataset Description A Russian dataset for detecting mentions of green practices in social media texts. The dataset has a sentence-level markup and contains 1,326 texts including 3,513 annotated sentences collected in Russian online communities. GreenRu contains the mentions of the following practices: waste sorting, studying the product labeling, waste recycling, signing petitions, refusing purchases, exchanging, sharing, participating in actions to promote responsible consumption, repairing. - **Language:** Russian ### Load Dataset To load the dataset, install the library datasets with ```pip install datasets```. Then, ```python from datasets import load_dataset dataset = load_dataset("beogradjanka/GreenRu") ``` to download train and test sets. ### Dataset Sources - **Repository:** GreenRu - **Paper:** Zakharova, O.; Glazkova, A. GreenRu: A Russian Dataset for Detecting Mentions of Green Practices in Social Media Posts. Appl. Sci. 2024, 14, 4466. https://doi.org/10.3390/app14114466 ## Dataset Structure The dataset is presented in a form of two csv files containing training and test subsets. Each entry of the files contains the practice ID (column "id_practice", the practice ID from the table below), the name of the green practice ("name\_practice"), the sentence containing the mention of the practice ("span"), the full text of the post ("text"), and the post ID ("id_post").
Characteristic | Training subset | Test subset |
Number of posts | 913 | 413 |
Symbols | 880.05 | 908.53 |
Tokens | 154.91 | 162.33 |
Symbols | 111.35 | 114.99 |
Tokens | 18.85 | 19.86 |
Number of posts # Waste sorting (ID = 1) | 1275 | 560 |
Number of posts # Studying the product labeling (ID = 2) | 55 | 17 |
Number of posts # Waste recycling (ID = 3) | 272 | 121 |
Number of posts # Signing petitions (ID = 4) | 22 | 31 |
Number of posts # Refusing purchases (ID = 5) | 236 | 75 |
Number of posts # Exchanging (ID = 6) | 146 | 52 |
Number of posts # Sharing (ID = 7) | 109 | 62 |
Number of posts # Participating in actions to promote responsible consumption (ID = 8) | 510 | 209 |
Number of posts # Repairing (ID = 9) | 10 | 3 |