RASMUS commited on
Commit
76b9c5f
1 Parent(s): 832b08c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +101 -1
README.md CHANGED
@@ -32,4 +32,104 @@ dataset_info:
32
  ---
33
  # Dataset Card for "Reddit_fi_2006_2022"
34
 
35
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  ---
33
  # Dataset Card for "Reddit_fi_2006_2022"
34
 
35
+
36
+ ## Dataset Description
37
+
38
+ - **Repository:** <https://github.com/alexandrainst/ScandiReddit>
39
+ - **Point of Contact:** [RASMUS](https://www.linkedin.com/in/rasmustoivanen/)
40
+ - **Size of csv filee on disk files:** 1542.75 MB
41
+ - **Size of the generated parquet files:** 970 MB
42
+
43
+ ### Dataset Summary
44
+
45
+ Reddit_fi is a filtered and post-processed corpus consisting of comments from [Reddit](https://reddit.com/).
46
+
47
+ Some words of caution at this stage however. Subreddits were not filtered as in ScandiReddit to filter out any specific subreddits that could have hate speech, toxicity, biased. Be careful when training language models with this data and curate you dataset properly.
48
+
49
+ All Reddit comments from January 2006 up until December 2022 were downloaded through [PushShift](https://files.pushshift.io/reddit/comments/), after which these were filtered based on the FastText language detection model by using confidence score of 70% was as a limit.
50
+
51
+ We also filter out shorter than 30 character messages based on body field.
52
+
53
+ ### Supported Tasks and Leaderboards
54
+
55
+ Training language models is the intended task for this dataset.
56
+ You can also use this dataset for various data analysis things
57
+
58
+
59
+ ### Languages
60
+
61
+ The dataset is available in Finnish
62
+
63
+
64
+
65
+ ### Data Instances
66
+
67
+ An example from the dataset looks as follows.
68
+ ```
69
+ {
70
+ 'subreddit': 'arkisuomi',
71
+ 'created_utc': 1671152007,
72
+ 'score': 1,
73
+ 'body': 'oatlyn iKaffe on maitoa parempaa kahvissa, en jois pelkästään kuitenkaan',
74
+ 'predicted_language': '__label__fi',
75
+ 'probability': 0.9783772230148317,
76
+ 'year': 2022.0,
77
+ 'day': 16.0,
78
+ 'month': 12.0,
79
+ 'time': '00:53:27'}
80
+ ```
81
+
82
+ ### Data Fields
83
+
84
+ The data fields are the same among all splits.
85
+
86
+ - `subreddit`: `string`
87
+ - `created_utc: `int`
88
+ - `predicted_language`: a `string`
89
+ - `probability`: a `float64`
90
+ - 'year': `datetime`
91
+ - 'day': `datetime`
92
+ - 'month': `datetime`
93
+ - 'time': `datetime` }
94
+
95
+ ### Language Distribution
96
+
97
+ | name | count |
98
+ |----------|---------:|
99
+ | fi | 4,476,667 |
100
+
101
+ ### Top-5 Subreddit Distribution
102
+
103
+ | name | count |
104
+
105
+ |Suomi |3 546 657|
106
+ |snappijuorut |469 592 |
107
+ |LakkoPostaukset |64 198 |
108
+ |snappisensuroimaton |6 248 |
109
+ |mina_irl |2 828 |
110
+
111
+
112
+
113
+
114
+ ## Dataset Creation
115
+
116
+ ### Curation Rationale
117
+
118
+ The Scandinavian languages do not have many open source social media datasets.
119
+
120
+ ### Source Data
121
+
122
+ The raw Reddit data was collected through [PushShift](https://files.pushshift.io/reddit/comments/).
123
+
124
+
125
+ ## Additional Information
126
+
127
+ ### Dataset Curators
128
+
129
+ [Rasmus Toivanen](https://www.linkedin.com/in/rasmustoivanen/)
130
+ Institute](https://alexandra.dk/) curated this dataset.
131
+
132
+ ### Licensing Information
133
+
134
+ The dataset is licensed under the [CC BY 4.0
135
+ license](https://creativecommons.org/licenses/by/4.0/).