Update README.md
Browse files
README.md
CHANGED
|
@@ -1,42 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Stephen Dataset
|
| 2 |
|
| 3 |
-
The **Stephen Dataset** is a
|
| 4 |
|
| 5 |
-
## Dataset
|
| 6 |
-
This dataset contains lines attributed to various characters, primarily focused on sarcastic, witty, and humorous responses.
|
| 7 |
|
| 8 |
-
|
| 9 |
-
- **
|
| 10 |
-
- **
|
| 11 |
-
|
| 12 |
-
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
-
|
| 20 |
-
- `data/stephen.csv` — Raw dataset in CSV format
|
| 21 |
-
- `data/stephen.jsonl` — Processed dataset for Hugging Face
|
| 22 |
|
| 23 |
-
##
|
| 24 |
-
```python
|
| 25 |
-
from datasets import load_dataset
|
| 26 |
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
## Citation
|
|
|
|
| 35 |
```bibtex
|
| 36 |
-
@misc{
|
| 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 |
+
}
|
|
|