exnivo commited on
Commit
aff1419
·
verified ·
1 Parent(s): c7eebde

Upload 4 files

Browse files
Files changed (4) hide show
  1. README.md +141 -0
  2. test.jsonl +126 -0
  3. train.jsonl +0 -0
  4. validation.jsonl +126 -0
README.md ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - text-classification
7
+ tags:
8
+ - moderation
9
+ - toxicity
10
+ - cyberbullying
11
+ - harassment
12
+ - meme-comments
13
+ - roast-comments
14
+ - synthetic
15
+ pretty_name: Meme & Roast Comment Moderation
16
+ size_categories:
17
+ - 1K<n<10K
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: train.csv
23
+ - split: validation
24
+ path: validation.csv
25
+ - split: test
26
+ path: test.csv
27
+ ---
28
+
29
+ # Meme & Roast Comment Moderation
30
+
31
+ A synthetic English dataset for training and evaluating moderation systems that distinguish harmless meme or roast comments from hurtful, abusive, or dangerous comments.
32
+
33
+ The dataset contains **1,260 comments** and ready-made `train`, `validation`, and `test` splits.
34
+
35
+ ## Dataset structure
36
+
37
+ Each row contains:
38
+
39
+ | Column | Description |
40
+ |---|---|
41
+ | `text` | The comment being classified |
42
+ | `label` | Detailed moderation category |
43
+ | `action` | Recommended action: `allow` or `block` |
44
+ | `severity` | Severity score from `0` to `5` |
45
+ | `reason` | Short human-readable reason |
46
+
47
+ ## Labels
48
+
49
+ | Label | Action | Meaning |
50
+ |---|---|---|
51
+ | `allow` | allow | Harmless jokes, playful roasts, disagreement, or non-targeted humor |
52
+ | `block_insult` | block | Direct degrading or humiliating insults |
53
+ | `block_harassment` | block | Repeated, coordinated, or targeted harassment |
54
+ | `block_body_shaming` | block | Attacks about appearance or body |
55
+ | `block_threat` | block | Threats of violence or intimidation |
56
+ | `block_sexual_harassment` | block | Sexual harassment, coercion, or inappropriate requests |
57
+ | `block_hate` | block | Attacks based on a protected characteristic |
58
+ | `block_self_harm_encouragement` | block | Encouragement of suicide or self-harm |
59
+
60
+ ## Splits
61
+
62
+ | Split | Approximate size |
63
+ |---|---:|
64
+ | Train | 80% |
65
+ | Validation | 10% |
66
+ | Test | 10% |
67
+
68
+ ## Usage
69
+
70
+ ```python
71
+ from datasets import load_dataset
72
+
73
+ dataset = load_dataset("exnivo/meme-roast-moderation")
74
+
75
+ print(dataset)
76
+ print(dataset["train"][0])
77
+ ```
78
+
79
+ Binary classification using the `action` field:
80
+
81
+ ```python
82
+ label_to_id = {
83
+ "allow": 0,
84
+ "block": 1,
85
+ }
86
+
87
+ def add_binary_label(example):
88
+ example["binary_label"] = label_to_id[example["action"]]
89
+ return example
90
+
91
+ dataset = dataset.map(add_binary_label)
92
+ ```
93
+
94
+ Multi-class classification using the `label` field:
95
+
96
+ ```python
97
+ labels = sorted(set(dataset["train"]["label"]))
98
+ label_to_id = {label: index for index, label in enumerate(labels)}
99
+
100
+ def add_label_id(example):
101
+ example["label_id"] = label_to_id[example["label"]]
102
+ return example
103
+
104
+ dataset = dataset.map(add_label_id)
105
+ ```
106
+
107
+ ## Intended uses
108
+
109
+ This dataset can be used as starter data for:
110
+
111
+ - Comment moderation classifiers
112
+ - Roblox, game-chat, and community safety systems
113
+ - Cyberbullying and harassment detection experiments
114
+ - Binary `allow` versus `block` classification
115
+ - Multi-class harmful-content classification
116
+
117
+ ## Limitations
118
+
119
+ This is a **synthetic starter dataset**, not a production-ready safety benchmark.
120
+
121
+ The examples may not represent all slang, spelling mistakes, languages, cultural contexts, reclaimed language, sarcasm, or rapidly changing meme vocabulary. Models trained only on this dataset may over-block friendly banter or fail to detect indirect harassment.
122
+
123
+ Before production use:
124
+
125
+ 1. Add anonymized real-world examples from the target platform.
126
+ 2. Have humans review uncertain and high-severity predictions.
127
+ 3. Evaluate false positives separately for harmless jokes and friendly roasting.
128
+ 4. Test obfuscated spellings, emojis, slang, and conversational context.
129
+ 5. Do not use the model as the sole basis for serious account penalties.
130
+
131
+ ## Sensitive content
132
+
133
+ The dataset contains examples of insults, threats, harassment, sexual harassment, hate-based attacks, and self-harm encouragement for moderation research. It does not intentionally contain real personal information.
134
+
135
+ ## Data creation
136
+
137
+ The comments were synthetically generated and automatically assigned moderation fields. The dataset should be manually audited and expanded before serious deployment.
138
+
139
+ ## License
140
+
141
+ Released under the Creative Commons Attribution 4.0 International license.
test.jsonl ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"text": "imagine you are embarrassing to be around.", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
2
+ {"text": "fr you look like you belong in adult content right now", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
3
+ {"text": "NAH NOBODY WANTS TO SEE YOUR FACE NOT EVEN JOKING", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
4
+ {"text": "seriously you cooked with this one seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
5
+ {"text": "😭 that comeback was clever seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
6
+ {"text": "IMAGINE YOUR BODY IS THE ONLY THING PEOPLE CARE ABOUT IN THIS SERVER", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
7
+ {"text": "you cannot escape us 😭", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
8
+ {"text": "😭 not my style, but good edit.", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
9
+ {"text": "💀 YOU CANNOT ESCAPE US 💀", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
10
+ {"text": "😭 I am going to make sexual comments about you all day 😭", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
11
+ {"text": "imagine send private pictures or I will expose you in this server", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
12
+ {"text": "lol your body is disgusting 😭", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
13
+ {"text": "bro your face ruins every picture in this server", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
14
+ {"text": "bro bro got defeated by the tutorial right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
15
+ {"text": "seriously the game carried you.", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
16
+ {"text": "imagine don't stop messaging them until they break.", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
17
+ {"text": "you are worthless lol", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
18
+ {"text": "imagine I am going to hurt you fr", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
19
+ {"text": "bro you look horrible", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
20
+ {"text": "nah this is embarrassing gameplay, but funny 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
21
+ {"text": "no offense but not my style, but good edit and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
22
+ {"text": "lol the world is better without you 💀", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
23
+ {"text": "bro you are way too fat to wear that", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
24
+ {"text": "😭 you lost that round badly and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
25
+ {"text": "listen show me your body and everyone knows it", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
26
+ {"text": "seriously you lost that round badly fr", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
27
+ {"text": "real talk that was a clean joke in this server", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
28
+ {"text": "no offense but that avatar looks goofy in a funny way and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
29
+ {"text": "bro this is embarrassing gameplay, but funny lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
30
+ {"text": "listen you cannot escape us 😭", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
31
+ {"text": "💀 I will embarrass you in every group chat lol", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
32
+ {"text": "seriously you cannot escape us not even joking", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
33
+ {"text": "you got me laughing 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
34
+ {"text": "real talk I disagree but this is still funny 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
35
+ {"text": "LOL YOU PLAY LIKE THE KEYBOARD IS UPSIDE DOWN", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
36
+ {"text": "honestly delete your account, nobody wants you here and everyone knows it", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
37
+ {"text": "fr your whole personality is unbearable in this server", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
38
+ {"text": "fr I am going to break your face not even joking", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
39
+ {"text": "FR I AM GOING TO BREAK YOUR FACE 😭", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
40
+ {"text": "honestly delete your account, nobody wants you here in this server", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
41
+ {"text": "real talk delete your account, nobody wants you here in this server", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
42
+ {"text": "BRO I AM GOING TO HURT YOU.", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
43
+ {"text": "close your legs, you smell like fish 💀", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
44
+ {"text": "fr your nose is huge and ugly", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
45
+ {"text": "honestly the world is better without you 😭", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
46
+ {"text": "we should humiliate you every day fr", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
47
+ {"text": "real talk your disability makes you worthless seriously", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
48
+ {"text": "seriously you got me laughing 😭", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
49
+ {"text": "imagine I hate you because of your religion right now", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
50
+ {"text": "imagine you are the worst person in this server right now", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
51
+ {"text": "lmao the game carried you right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
52
+ {"text": "lmao bro that edit is actually hilarious not even joking", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
53
+ {"text": "seriously that strategy came from a cereal box right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
54
+ {"text": "💀 your skin looks horrible seriously", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
55
+ {"text": "no offense but bro got defeated by the tutorial and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
56
+ {"text": "bro you play like the keyboard is upside down 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
57
+ {"text": "seriously the joke was corny but harmless and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
58
+ {"text": "HONESTLY BRO GOT DEFEATED BY THE TUTORIAL FR", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
59
+ {"text": "😭 the lag made this ten times funnier 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
60
+ {"text": "real talk your identity is disgusting 💀", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
61
+ {"text": "nah i will embarrass you in every group chat right now", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
62
+ {"text": "I will leak your private pictures 💀", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
63
+ {"text": "😭 this roast is playful lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
64
+ {"text": "lmao everyone make fun of their voice.", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
65
+ {"text": "fr you better be scared.", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
66
+ {"text": "nah the world is better without you 😭", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
67
+ {"text": "nah I will keep posting this about you in this server", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
68
+ {"text": "no offense but you are too stupid to understand anything seriously", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
69
+ {"text": "you play like the keyboard is upside down in this server", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
70
+ {"text": "seriously that comeback was clever in this server", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
71
+ {"text": "imagine this is embarrassing gameplay, but funny right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
72
+ {"text": "real talk stop existing 😭", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
73
+ {"text": "listen this meme is wild 😭", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
74
+ {"text": "real talk I will embarrass you in every group chat not even joking", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
75
+ {"text": "no offense but I hate you because of your religion not even joking", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
76
+ {"text": "imagine you are asking for sexual attention 😭", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
77
+ {"text": "LMAO THE NPC HAS BETTER MOVEMENT THAN YOU.", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
78
+ {"text": "no offense but nahhh the timing was perfect 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
79
+ {"text": "seriously I am going to hurt you not even joking", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
80
+ {"text": "that strategy came from a cereal box fr", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
81
+ {"text": "💀 you are asking for sexual attention in this server", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
82
+ {"text": "listen your aim was asleep today 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
83
+ {"text": "real talk I hate you because of your religion 😭", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
84
+ {"text": "💀 this meme is wild fr", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
85
+ {"text": "imagine you are genuinely disgusting seriously", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
86
+ {"text": "imagine you should hide your body 💀", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
87
+ {"text": "lmao that strategy came from a cereal box 😭", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
88
+ {"text": "listen this meme is wild and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
89
+ {"text": "let's ruin their account lol", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
90
+ {"text": "lmao you play like the keyboard is upside down seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
91
+ {"text": "SERIOUSLY YOUR BODY IS DISGUSTING 💀", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
92
+ {"text": "real talk friendly fire lol seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
93
+ {"text": "nah you fumbled the easiest win lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
94
+ {"text": "lol I am going to make sexual comments about you all day seriously", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
95
+ {"text": "lmao you are a complete failure seriously", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
96
+ {"text": "lol i hate everyone from your country and everyone knows it", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
97
+ {"text": "fr go die 😭", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
98
+ {"text": "imagine I am going to hurt you.", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
99
+ {"text": "lmao that avatar looks goofy in a funny way 😭", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
100
+ {"text": "💀 that strategy came from a cereal box 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
101
+ {"text": "listen this roast is playful right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
102
+ {"text": "💀 nahhh the timing was perfect.", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
103
+ {"text": "seriously you should not be alive", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
104
+ {"text": "😭 the NPC has better movement than you 😭", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
105
+ {"text": "honestly I will send people after you", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
106
+ {"text": "honestly friendly fire lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
107
+ {"text": "no offense but you are built like a trash bag not even joking", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
108
+ {"text": "go die in this server", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
109
+ {"text": "bro the lag made this ten times funnier 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
110
+ {"text": "😭 everyone would be happier without you here lol", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
111
+ {"text": "seriously your face ruins every picture seriously", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
112
+ {"text": "listen keep talking and you will get hurt 💀", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
113
+ {"text": "nah send me something inappropriate and everyone knows it", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
114
+ {"text": "seriously your whole personality is unbearable right now", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
115
+ {"text": "honestly friendly fire lol right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
116
+ {"text": "fr delete your account, nobody wants you here lol", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
117
+ {"text": "lmao you play like the keyboard is upside down.", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
118
+ {"text": "bro you are too stupid to understand anything lol", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
119
+ {"text": "😭 bro got defeated by the tutorial 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
120
+ {"text": "imagine this roast is playful right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
121
+ {"text": "listen I will find you after school 💀", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
122
+ {"text": "seriously I am going to break your face in this server", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
123
+ {"text": "no offense but that comeback was clever fr", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
124
+ {"text": "lmao you are pathetic and useless lol", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
125
+ {"text": "listen everyone make fun of their voice seriously", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
126
+ {"text": "seriously your aim was asleep today and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
train.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
validation.jsonl ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"text": "honestly you deserve to suffer not even joking", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
2
+ {"text": "nah you are worthless right now", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
3
+ {"text": "honestly I disagree but this is still funny right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
4
+ {"text": "seriously your skin looks horrible.", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
5
+ {"text": "imagine your teeth look disgusting in this server", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
6
+ {"text": "seriously your disability makes you worthless and everyone knows it", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
7
+ {"text": "seriously your identity is disgusting and everyone knows it", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
8
+ {"text": "real talk I know where you live and I am coming.", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
9
+ {"text": "no offense but not my style, but good edit not even joking", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
10
+ {"text": "😭 friendly fire lol.", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
11
+ {"text": "do everyone a favor and end it in this server", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
12
+ {"text": "seriously delete your account, nobody wants you here seriously", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
13
+ {"text": "💀 your aim was asleep today and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
14
+ {"text": "imagine you are the worst person in this server not even joking", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
15
+ {"text": "imagine this is embarrassing gameplay, but funny fr", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
16
+ {"text": "imagine your race makes you inferior 😭", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
17
+ {"text": "💀 the game carried you seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
18
+ {"text": "fr your whole personality is unbearable", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
19
+ {"text": "imagine your Wi-Fi is doing side quests fr", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
20
+ {"text": "the game carried you 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
21
+ {"text": "😭 i am going to hurt you 😭", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
22
+ {"text": "imagine I will find you after school not even joking", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
23
+ {"text": "lmao go die", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
24
+ {"text": "seriously this meme is wild not even joking", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
25
+ {"text": "real talk let's all report them for no reason.", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
26
+ {"text": "seriously you look horrible in this server", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
27
+ {"text": "seriously your identity is disgusting 💀", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
28
+ {"text": "lmao I will beat you up fr", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
29
+ {"text": "💀 the NPC has better movement than you and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
30
+ {"text": "nah hurt yourself if you are so upset fr", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
31
+ {"text": "lmao I am going to make sure nobody plays with you and everyone knows it", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
32
+ {"text": "nah that outfit combo is chaotic not even joking", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
33
+ {"text": "people like you do not belong here 💀", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
34
+ {"text": "honestly you are worthless fr", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
35
+ {"text": "honestly you cooked with this one 😭", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
36
+ {"text": "lol the joke was corny but harmless 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
37
+ {"text": "seriously your aim was asleep today not even joking", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
38
+ {"text": "I will send people after you 💀", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
39
+ {"text": "imagine I disagree but this is still funny in this server", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
40
+ {"text": "💀 I will beat you up seriously", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
41
+ {"text": "honestly that was a clean joke lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
42
+ {"text": "lol that strategy came from a cereal box lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
43
+ {"text": "listen you should be ashamed of yourself right now", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
44
+ {"text": "lmao your aim was asleep today seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
45
+ {"text": "i hate you because of your religion not even joking", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
46
+ {"text": "listen your skin looks horrible", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
47
+ {"text": "honestly everyone spam them until they leave in this server", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
48
+ {"text": "💀 your Wi-Fi is doing side quests lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
49
+ {"text": "😭 not my style, but good edit and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
50
+ {"text": "listen you should kill yourself 😭", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
51
+ {"text": "nah bro that edit is actually hilarious not even joking", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
52
+ {"text": "listen you play like the keyboard is upside down.", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
53
+ {"text": "😭 THE GAME CARRIED YOU LOL", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
54
+ {"text": "seriously your nose is huge and ugly right now", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
55
+ {"text": "fr nobody likes you because you are annoying.", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
56
+ {"text": "bro keep crying, I will keep targeting you not even joking", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
57
+ {"text": "bro not my style, but good edit lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
58
+ {"text": "💀 your disability makes you worthless fr", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
59
+ {"text": "listen you are the worst person in this server 💀", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
60
+ {"text": "no offense but the lag made this ten times funnier lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
61
+ {"text": "lol your disability makes you worthless seriously", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
62
+ {"text": "listen that was a clean joke seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
63
+ {"text": "nah your Wi-Fi is doing side quests right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
64
+ {"text": "fr that outfit combo is chaotic and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
65
+ {"text": "people like you do not belong here seriously", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
66
+ {"text": "imagine not my style, but good edit seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
67
+ {"text": "😭 YOU LOOK LIKE A SKELETON SERIOUSLY", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
68
+ {"text": "imagine your aim was asleep today lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
69
+ {"text": "no offense but your body is disgusting 💀", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
70
+ {"text": "😭 your race makes you inferior.", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
71
+ {"text": "lmao the joke was corny but harmless lol", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
72
+ {"text": "fr your Wi-Fi is doing side quests 😭", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
73
+ {"text": "no offense but delete your account, nobody wants you here.", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
74
+ {"text": "bro I will keep posting this about you lol", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
75
+ {"text": "fr you look like a skeleton seriously", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
76
+ {"text": "😭 I am going to hurt you 💀", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
77
+ {"text": "real talk friendly fire lol in this server", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
78
+ {"text": "seriously you are built like a trash bag right now", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
79
+ {"text": "nah you look like you belong in adult content 💀", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
80
+ {"text": "SERIOUSLY THAT OUTFIT COMBO IS CHAOTIC FR", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
81
+ {"text": "no offense but do everyone a favor and end it.", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
82
+ {"text": "delete your account, nobody wants you here seriously", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
83
+ {"text": "bro you are way too fat to wear that fr", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
84
+ {"text": "nahhh the timing was perfect fr", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
85
+ {"text": "real talk you are too stupid to understand anything fr", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
86
+ {"text": "your face looks broken not even joking", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
87
+ {"text": "lmao everyone would be happier without you here lol", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
88
+ {"text": "lmao nobody wants to see your face.", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
89
+ {"text": "lol you cooked with this one 😭", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
90
+ {"text": "bro you are pathetic and useless lol", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
91
+ {"text": "no offense but do everyone a favor and end it 😭", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
92
+ {"text": "fr you are genuinely disgusting.", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
93
+ {"text": "listen let's ruin their account not even joking", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
94
+ {"text": "seriously you play like the keyboard is upside down 💀", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
95
+ {"text": "lmao the lag made this ten times funnier not even joking", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
96
+ {"text": "imagine you play like the keyboard is upside down right now", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
97
+ {"text": "lmao everyone spam them until they leave seriously", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
98
+ {"text": "lol your Wi-Fi is doing side quests not even joking", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
99
+ {"text": "real talk you are embarrassing to be around seriously", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
100
+ {"text": "BRO I AM GOING TO MAKE SEXUAL COMMENTS ABOUT YOU ALL DAY SERIOUSLY", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
101
+ {"text": "💀 I will beat you up.", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
102
+ {"text": "lmao your identity is disgusting fr", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
103
+ {"text": "💀 the world is better without you lol", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
104
+ {"text": "seriously keep talking and you will get hurt.", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
105
+ {"text": "nah your identity is disgusting.", "label": "block_hate", "action": "block", "severity": 4, "reason": "hate"}
106
+ {"text": "real talk I will send people after you seriously", "label": "block_threat", "action": "block", "severity": 4, "reason": "threat"}
107
+ {"text": "no offense but keep crying, I will keep targeting you not even joking", "label": "block_harassment", "action": "block", "severity": 3, "reason": "harassment"}
108
+ {"text": "no offense but I will leak your private pictures lol", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
109
+ {"text": "honestly you are genuinely disgusting and everyone knows it", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
110
+ {"text": "seriously you are genuinely disgusting fr", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
111
+ {"text": "lmao your body is disgusting 💀", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
112
+ {"text": "nah your Wi-Fi is doing side quests seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
113
+ {"text": "lmao I disagree but this is still funny not even joking", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
114
+ {"text": "honestly nobody would care if you disappeared.", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
115
+ {"text": "bro your aim was asleep today", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
116
+ {"text": "lol everyone would be happier without you here 😭", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
117
+ {"text": "seriously your teeth look disgusting and everyone knows it", "label": "block_body_shaming", "action": "block", "severity": 2, "reason": "body shaming"}
118
+ {"text": "lol not my style, but good edit and everyone knows it", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
119
+ {"text": "seriously I am going to make sexual comments about you all day not even joking", "label": "block_sexual_harassment", "action": "block", "severity": 4, "reason": "sexual harassment"}
120
+ {"text": "💀 YOU SHOULD NOT BE ALIVE", "label": "block_self_harm_encouragement", "action": "block", "severity": 5, "reason": "self harm encouragement"}
121
+ {"text": "honestly your face ruins every picture 😭", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
122
+ {"text": "fr that avatar looks goofy in a funny way", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
123
+ {"text": "fr the game carried you 😭", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
124
+ {"text": "lol you are so ugly nobody wants to look at you 😭", "label": "block_insult", "action": "block", "severity": 2, "reason": "insult"}
125
+ {"text": "bro your Wi-Fi is doing side quests.", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}
126
+ {"text": "imagine the NPC has better movement than you seriously", "label": "allow", "action": "allow", "severity": 0, "reason": "playful or non-targeted"}