File size: 12,468 Bytes
92c8b6a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
266
267
268
269
270
271
272
273
274
275
276
277
278
---
license: cc
language:
- en  # Example: fr
tags:
- natural-language-understanding  # Example: audio
- ideology classification  # 
- text classification  # 
annotations_creators:
- crowdsourced  # Example: crowdsourced, found, expert-generated, machine-generated
language_creators:
- crowdsourced  # Example: crowdsourced, ...
# language_details:
# - en-US  # Example: fr-FR
pretty_name: PiLls  # Example: SQuAD
size_categories:
- n<2K  # Example: n<1K, 100K<n<1M, …
source_datasets:
- reddit  # Example: wikipedia
task_categories:  # Full list at https://github.com/huggingface/huggingface.js/blob/main/packages/tasks/src/pipelines.ts
- text-classification   # Example: question-answering
task_ids:
- multi-class-classification  # Example: extractive-qa
#paperswithcode_id: {paperswithcode_id}  # Dataset id on PapersWithCode (from the URL). Example for SQuAD: squad
# configs:  # Optional for datasets with multiple configurations like glue.
# - {config_0}  # Example for glue: sst2
# - {config_1}  # Example for glue: cola

# Optional. This part can be used to store the feature types and size of the dataset to be used in python. This can be automatically generated using the datasets-cli.
dataset_info:
  features:
    - name: subreddit    # Example: id
      dtype: string # Example: int32
    - name: post_id    # Example: text
      dtype: string # Example: string
    - name: title    # Example: image
      dtype: string  # Example: image
    - name : text
      dtype: string
    - name : url
      dtype: string
    - name : score
      dtype: int32
    - name : text
      dtype: string
    - name : url
      dtype: string
    - name : author
      dtype: string
    - name : date
      dtype: int64
    # Example for SQuAD:
    # - name: id
    #   dtype: string
    # - name: title
    #   dtype: string
    # - name: context
    #   dtype: string
    # - name: question
    #   dtype: string
    # - name: answers
    #   sequence:
    #     - name: text
    #       dtype: string
    #     - name: answer_start
    #       dtype: int32
  # config_name: {config_name}  # Example for glue: sst2
  # splits:
  #   - name: {split_name_0}                  # Example: train
  #     num_bytes: {split_num_bytes_0}        # Example for SQuAD: 79317110
  #     num_examples: {split_num_examples_0}  # Example for SQuAD: 87599
  # download_size: {dataset_download_size}   # Example for SQuAD: 35142551
  # dataset_size: {dataset_size}             # Example for SQuAD: 89789763

# It can also be a list of multiple configurations:
# ```yaml
# dataset_info:
#   - config_name: {config0}
#     features:
#       ...
#   - config_name: {config1}
#     features:
#       ...
# ```

# # Optional. If you want your dataset to be protected behind a gate that users have to accept to access the dataset. More info at https://huggingface.co/docs/hub/datasets-gated
# extra_gated_fields:
# - {field_name_0}: {field_type_0}  # Example: Name: text
# - {field_name_1}: {field_type_1}  # Example: Affiliation: text
# - {field_name_2}: {field_type_2}  # Example: Email: text
# - {field_name_3}: {field_type_3}  # Example for speech datasets: I agree to not attempt to determine the identity of speakers in this dataset: checkbox
# extra_gated_prompt: {extra_gated_prompt}  # Example for speech datasets: By clicking on “Access repository” below, you also agree to not attempt to determine the identity of speakers in the dataset.

# # Optional. Add this if you want to encode a train and evaluation info in a structured way for AutoTrain or Evaluation on the Hub
# train-eval-index:
#   - config: {config_name}           # The dataset config name to use. Example for datasets without configs: default. Example for glue: sst2
#     task: {task_name}               # The task category name (same as task_category). Example: question-answering
#     task_id: {task_type}            # The AutoTrain task id. Example: extractive_question_answering
#     splits:
#       train_split: train            # The split to use for training. Example: train
#       eval_split: validation        # The split to use for evaluation. Example: test
#     col_mapping:                    # The columns mapping needed to configure the task_id.
#     # Example for extractive_question_answering:
#       # question: question
#       # context: context
#       # answers:
#       #   text: text
#       #   answer_start: answer_start
#     metrics:
#       - type: {metric_type}         # The metric id. Example: wer. Use metric id from https://hf.co/metrics
#         name: {metric_name}         # Tne metric name to be displayed. Example: Test WER
---
---

# Dataset Card for Dataset Name

<!-- Provide a quick summary of the dataset. -->

This dataset aims to be a tool to help trace linguistic patterns in the reddit posts from members who partake in the internet centric pill ideologies, known as blackpill, red pill, blue pill. 
## Dataset Details

### Dataset Description

A few of the major groups' posts have been coalesced into one dataset, all from different years. There are more than 200 posts per the major pill groups on reddit (red pill rebooted, blue pill, black pill, married red pill, red pill women, and feminism as a counterpoint of reference). The group of feminism was added as a juxtaposition against red pill women, in oder to allow researchers to explore those dichotomies. For researchers, the value will be in identifying or classifying the types of words that make one ideology more prominent than the other.

- **Curated by:** [steamcyclone]
- **Funded by [optional]:** [More Information Needed]
- **Shared by [optional]:** [steamcyclone]
- **Language(s) (NLP):** [EN]
- **License:** [CC]

### Dataset Sources [optional]

<!-- Provide the basic links for the dataset. -->

- **Repository:** [This is the only source]

## Uses

The main usage of this dataset is to study linguistic patterns. Running models and detecting word usage per groups, as well as overlaps across groups is an ideal use for this dataset. With the rise of the loneliness epidemic, any insights that come from this are welcome. 

### Direct Use

The suitable use cases are to multi-class classification, word clustering or semantic clustering per different groups, summarization modeling, text parsing, and any other natural language processing task.

[More Information Needed]

### Out-of-Scope Use

This dataset is not meant to be utilized to demonize or mock certain online communities for the trials in life in which individuals find themselves. If the viewer's agenda is to push forward some misandrist or misogynistic agenda, please ignore this dataset.  


[More Information Needed]

## Dataset Structure

<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->

Currently, this dataset contains 

- subreddit of the post : string,
- postid : string
- title of the post: string
- text of the post (where applicable) : string
- url (if something was embedded) : string\
- score : int32
- author : string
- date : int64

[More Information Needed]

## Dataset Creation

### Curation Rationale

With the rise of the loneliness epidemic and the radicalization of internet content pitting men and women against each other, it is important to seek understanding of the root of the problem. Depending on whom you ask, you'll get a plethora of answers. Jordan Peterson describes it as some type of post-modernist feminist liberalism problem. The Andrew Tates and other conservative archetypes blame the loss of traditionalism. Others blame dating apps and its selection bias effects. Within each of the major pill ideologies, with the exception of the BlackPill, men blame women, and women blame men. 

Unfortunately, male spaces, as substantiated by research and media coverage, in recent years have only been able to exist on the internet, and counter-spaces have emerged to challenge the views held in the differing ideologies.

In short, according to archetypical definitions
- the red pill is the emancipation of the masculinity in a feminized age and understanding mating strategies with women. 
- the blue pill is the satire of the red pill, often run by women.
- the black pill is meant to bridge the gaps across the red, pink, and blue pills in order to land on a ground truth.
- the pink pill is about improving the female image by augmenting sexual marketplace value.

[More Information Needed]

### Source Data

Each record contains a reddit post, approximately 200 per group, and has a key title and a post with words to display the intended message by the author.

#### Data Collection and Processing

<!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->

In progress. 

However, the plan is to increase the amount of records and leverage the ChatGpt API to summarize the messages into categories. In addition, the dates have to be cleaned a little, in order to add use for researches. I am also not sure if I can retrieve comments per post, further augmenting the data. 

[More Information Needed]

#### Who are the source data producers?

The producers of the data are the various redditors who have participated in these spaces. 

[More Information Needed]

### Annotations [optional]

An annotation that is not part of the collection will be the ChatGPT summarizations (future). The subreddit labels are merely the origins of the posts. 

#### Annotation process

<!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->

The origin of the posts are the labels of the records. 


#### Who are the annotators?

I and the subreddit origin are the label annotators. 


#### Personal and Sensitive Information

<!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->

This dataset contains no personally identifiable information with the exception of embedded youtube links. Those links may lead to videos where the impact of the content is unknown.

## Bias, Risks, and Limitations

<!-- This section is meant to convey both technical and sociotechnical limitations. -->

A major caveat is that the pink pill and original red pill groups are shadow banned, impeding their scraping process. This is a flaw I recognize because the original red pill movement, which started in books by authors, propagated itself through its internet (reddit) variant, and it spawned all the other pills.

Another bias point is that there is more red pill content, as a means to compensate for the ban of the original red pill subreddit. 

As such, I caution researchers to balance their datasets where necessary. 


[More Information Needed]

### Recommendations

<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->

Users should be made aware of the risks, biases and limitations of the dataset. Remember that this dataset is not a tool for reckless and hateful political agendas.

## Citation [optional]

<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->

**BibTeX:**

[More Information Needed]

**APA:**

[More Information Needed]

## Glossary [optional]

Pill ideologies :

In short, according to archetypical definitions
- the red pill is the emancipation of the masculinity in a feminized age and understanding mating strategies with women. 
- the blue pill is the satire of the red pill, often run by women.
- the black pill is meant to bridge the gaps across the red, pink, and blue pills in order to land on a ground truth.
- the pink pill is about improving the female image by augmenting sexual marketplace value.


## Dataset Card Authors [optional]

steamcyclone, all the redditors from the subreddits in the authors columns.

## Dataset Card Contact

- N/A