dgtalbug commited on
Commit
2cb6e50
·
verified ·
1 Parent(s): f270c66

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -28
README.md CHANGED
@@ -1,42 +1,54 @@
 
 
 
 
1
  # Stephen Dataset
2
 
3
- The **Stephen Dataset** is a conversational humor dataset designed for fine-tuning sarcastic, witty AI models.
4
 
5
- ## Dataset Description
6
- This dataset contains lines attributed to various characters, primarily focused on sarcastic, witty, and humorous responses.
7
 
8
- - **Language**: English
9
- - **Format**: CSV, JSONL
10
- - **Columns**:
11
- - `character` — the speaker/persona
12
- - `line` — the dialogue line
13
 
14
- ## Example Row
15
- | character | line |
16
- |-----------|------|
17
- | Chandler | Could I *be* wearing any more clothes? |
 
 
 
 
 
 
18
 
19
- ## Files
20
- - `data/stephen.csv` — Raw dataset in CSV format
21
- - `data/stephen.jsonl` — Processed dataset for Hugging Face
22
 
23
- ## Usage
24
- ```python
25
- from datasets import load_dataset
26
 
27
- dataset = load_dataset("dgtalbug/stephen-dataset")
28
- print(dataset["train"][0])
29
- ```
30
 
31
- ## License
32
- Apache 2.0
 
 
 
 
 
 
 
33
 
34
  ## Citation
 
35
  ```bibtex
36
- @misc{stephen_dataset_2025,
37
- title = {Stephen Dataset},
38
  author = {dgtalbug},
39
  year = {2025},
40
- howpublished = {\url{https://huggingface.co/dgtalbug/stephen-dataset}}
41
- }
42
- ```
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
  # Stephen Dataset
6
 
7
+ The **Stephen Dataset** is a humor-infused dialogue and joke collection designed to train conversational AI with a sarcastic, witty, and opinionated personality — perfect for code-roasting and banter.
8
 
9
+ ## Dataset Summary
 
10
 
11
+ This dataset combines:
12
+ - **Friends TV show transcripts** (for Chandler Bing–style sarcasm)
13
+ - **Reddit jokes & programming humor**
14
+ - **Sarcasm headlines**
15
+ - **Developer-themed one-liners**
16
 
17
+ It is intended for training **Stephen**, a conversational coding assistant with sharp wit and self-aware humor.
18
+
19
+ ## Supported Tasks
20
+
21
+ - Conversational AI
22
+ - Sarcasm generation
23
+ - Programming humor generation
24
+ - Code review banter
25
+
26
+ ## Languages
27
 
28
+ - English
 
 
29
 
30
+ ## Dataset Structure
 
 
31
 
32
+ **Format**: CSV with two columns:
33
+ - `character` — The speaker (e.g., Chandler, Stephen, Narrator)
34
+ - `line` — The sarcastic or humorous line of dialogue
35
 
36
+ Example:
37
+
38
+ | character | line |
39
+ |-----------|------|
40
+ | Stephen | Oh, you broke production? Great! Now we can finally test our incident response plan. |
41
+
42
+ ## Licensing
43
+
44
+ This dataset is released under the **Apache 2.0 License**.
45
 
46
  ## Citation
47
+
48
  ```bibtex
49
+ @misc{stephen_dataset,
50
+ title = {Stephen Dataset: Sarcastic Humor for Conversational AI},
51
  author = {dgtalbug},
52
  year = {2025},
53
+ howpublished = {\url{https://huggingface.co/datasets/dgtalbug/stephen-dataset}}
54
+ }