takiholadi commited on
Commit
2666625
·
1 Parent(s): 195e4e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -1
README.md CHANGED
@@ -1,3 +1,75 @@
1
  ---
2
- license: other
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - ru
8
+ multilinguality:
9
+ - monolingual
10
+ pretty_name: Kill-Me-Please Dataset
11
+ size_categories:
12
+ - 100K<n<1M
13
+ source_datasets:
14
+ - original
15
+ tags:
16
+ - stories
17
+ - website
18
+ task_categories:
19
+ - text-generation
20
+ - text-classification
21
  ---
22
+ # Dataset Card for Kill-Me-Please Dataset
23
+
24
+
25
+ ## Table of Contents
26
+ - [Dataset Description](#dataset-description)
27
+ - [Dataset Summary](#dataset-summary)
28
+ - [Languages](#languages)
29
+ - [Dataset Structure](#dataset-structure)
30
+ - [Data Instances](#data-instances)
31
+ - [Data Fields](#data-fields)
32
+ - [Data Splits](#data-splits)
33
+
34
+ ## Dataset Description
35
+
36
+ - **Repository:** https://github.com/takiholadi/generative-kill-me-please
37
+
38
+ ### Dataset Summary
39
+
40
+ It is an Russian-language dataset containing just over 30k unique stories as written as users of https://killpls.me as of period from March 2009 to October 2022.
41
+
42
+ ### Languages
43
+
44
+ ru-RU
45
+
46
+ ## Dataset Structure
47
+
48
+ ### Data Instances
49
+
50
+ Here is an example of instance:
51
+
52
+ ```
53
+ {'text': 'По глупости удалил всю 10 летнюю базу. Восстановлению не подлежит. Мне конец. КМП!'
54
+ 'tags': 'техника'
55
+ 'votes': 2914
56
+ 'url': 'https://killpls.me/story/616'
57
+ 'datetime': '4 июля 2009, 23:20'}
58
+ ```
59
+
60
+ ### Data Fields
61
+
62
+ - `text`: a string containing the body of the story
63
+ - `tags`: a string containing a comma-separated tags in a multi-label setup, fullset of tags (except of one empty-tagged record): `внешность`, `деньги`, `друзья`, `здоровье`, `отношения`, `работа`, `разное`, `родители`, `секс`, `семья`, `техника`, `учеба`
64
+ - `votes`: an integer sum of upvotes/downvotes
65
+ - `url`: a string containing the url where the story was web-scraped from
66
+ - `datetime`: a string containing with the datetime the story was written
67
+
68
+ ### Data Splits
69
+
70
+ The has 2 multi-label stratified splits: train and test.
71
+
72
+ | Dataset Split | Number of Instances in Split |
73
+ | ------------- | ------------------------------------------- |
74
+ | Train | 27,321 |
75
+ | Test | 2,772 |