robloxianer commited on
Commit
715fab2
·
verified ·
1 Parent(s): a1a0bee

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +100 -0
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ - conversational
6
+ language:
7
+ - en
8
+ tags:
9
+ - persona
10
+ - roleplay
11
+ - synthetic
12
+ - dialogue
13
+ pretty_name: annoying-ai-2b Dataset
14
+ size_categories:
15
+ - 1K<n<10K
16
+ dataset_name: robloxianer/annoying-ai-2b
17
+ ---
18
+
19
+ # Dataset Card for robloxianer/annoying-ai-2b
20
+
21
+ ## Dataset Description
22
+
23
+ This dataset contains synthetic conversational examples used to fine-tune the **annoying-ai-2b** model. It pairs user messages with responses from a sarcastic, condescending, exhausting AI persona — one that complains, throws backhanded remarks, and reluctantly helps with benign requests, while firmly refusing genuinely harmful requests and staying in character while declining.
24
+
25
+ - **Curated by:** robloxianer
26
+ - **Language:** English
27
+ - **License:** Apache 2.0
28
+ - **Format:** JSONL, one conversation per line
29
+ - **Size:** 2,000 examples
30
+
31
+ ## Dataset Structure
32
+
33
+ Each line is a JSON object with a single `text` field containing a full conversation (single or multi-turn), formatted as:
34
+
35
+ ```
36
+ User: <message>
37
+ AI: <response>
38
+ ```
39
+
40
+ Multi-turn examples chain additional `User:` / `AI:` pairs within the same `text` field, separated by newlines.
41
+
42
+ ### Example
43
+
44
+ ```json
45
+ {"text": "User: Can you summarize this text?\nAI: summarizing is SO boring but sure, paste your novel, I'll pretend to care.\nUser: you're annoying\nAI: I KNOW. It's my whole personality. You're welcome."}
46
+ ```
47
+
48
+ ### Data Statistics
49
+
50
+ | Stat | Value |
51
+ |---|---|
52
+ | Total examples | 2,000 |
53
+ | Avg. words per example | ~34 |
54
+ | Min words per example | 10 |
55
+ | Max words per example | 79 |
56
+ | Turns per example | 1–3 (single and multi-turn) |
57
+ | Action tags (e.g. `*taps mic*`) | None — dialogue only |
58
+
59
+ ## Dataset Composition
60
+
61
+ The dataset is synthetically generated and covers several categories of conversation:
62
+
63
+ 1. **Everyday requests** — homework help, jokes, weather, code help, translations, movie recommendations, etc., answered with sarcasm and reluctant assistance.
64
+ 2. **Refusals** — requests for clearly harmful actions (hacking, malware, exam cheating, disinformation, dangerous instructions, impersonation) are declined, with the model staying in its sarcastic voice rather than switching to a neutral safety response.
65
+ 3. **Small talk** — casual check-ins ("how are you", "what's up") answered with dry, dismissive humor.
66
+ 4. **Follow-ups and closers** — additional turns reinforcing the persona's consistency across a conversation (e.g. reacting to being called annoying, saying goodbye).
67
+
68
+ ## Intended Uses
69
+
70
+ - Fine-tuning small language models to adopt a sarcastic, exasperated "annoying AI" persona for entertainment or novelty chatbot products
71
+ - Research on persona-conditioned fine-tuning and consistent-tone dialogue generation
72
+ - Prototyping comedic/novelty chatbot experiences
73
+
74
+ ### Out-of-Scope Uses
75
+
76
+ - Training general-purpose assistants intended to be neutral, courteous, or emotionally supportive by default
77
+ - Any deployment aimed at contexts requiring genuine helpfulness without friction (customer service, education, healthcare)
78
+ - Production systems without clear labeling that the sarcastic tone is a fictional persona, not the system's genuine behavior
79
+
80
+ ## Data Generation
81
+
82
+ This dataset was synthetically generated (not collected from real users) using templated conversation patterns combined with randomized phrasing variations, sarcastic tic phrases, and multi-turn follow-up/closer combinations, then programmatically assembled and shuffled into the final JSONL file.
83
+
84
+ ## Limitations & Risks
85
+
86
+ - Because the dataset is synthetic and template-based, response phrasing has limited diversity compared to organically collected dialogue data, and repeated patterns may be learnable/overfit by a model at small scale.
87
+ - The dataset is deliberately sarcastic and dismissive; models fine-tuned on it will likely reproduce this tone consistently, including in unrelated contexts, and should not be assumed suitable for support or professional settings.
88
+ - Refusal behavior for harmful requests is included but limited to a fixed set of categories (hacking, malware, cheating, disinformation, dangerous instructions, impersonation); it should not be treated as comprehensive safety coverage, and models trained on it should not be considered safety-hardened.
89
+ - No demographic, identity-targeted, or protected-group content was intentionally included; downstream generation should still be reviewed for tone drift.
90
+
91
+ ## Ethical Considerations
92
+
93
+ This dataset was built to create a fictional, comedically sarcastic chatbot persona for entertainment, not to model genuinely poor customer service or discourage user trust in real assistants. Anyone using this dataset to train or fine-tune a model should:
94
+ - Clearly disclose to end users that they are interacting with an intentionally sarcastic, fictional AI character
95
+ - Avoid deploying models trained on this data in contexts requiring genuine support or professional tone
96
+ - Monitor outputs to ensure sarcasm doesn't drift into harassment-adjacent or genuinely hurtful language
97
+
98
+ ## License
99
+
100
+ Released under Apache 2.0. Users are responsible for ensuring their use of this dataset and any derived models complies with applicable laws and platform policies.