kth8 commited on
Commit ·
2d593c8
1
Parent(s): f6c7d9f
Add jokes
Browse files- README.md +35 -0
- jokes.sft.jsonl +0 -0
README.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
license: mit
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language: en
|
| 3 |
license: mit
|
| 4 |
---
|
| 5 |
+
Based on jokes from [v2.jokeapi.dev](https://v2.jokeapi.dev/). Teach your assistant better jokes.
|
| 6 |
+
|
| 7 |
+
Each instance follows this format:
|
| 8 |
+
```json
|
| 9 |
+
{
|
| 10 |
+
"messages": [
|
| 11 |
+
{
|
| 12 |
+
"role": "system",
|
| 13 |
+
"content": "You are a helpful assistant."
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"role": "user",
|
| 17 |
+
"content": "what's a good joke?"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"role": "assistant",
|
| 21 |
+
"content": "What do Santa's little helpers learn at school? The elf-abet!"
|
| 22 |
+
}
|
| 23 |
+
],
|
| 24 |
+
"safe": true,
|
| 25 |
+
"category": "Christmas",
|
| 26 |
+
"nsfw": false,
|
| 27 |
+
"religious": false,
|
| 28 |
+
"racist": false,
|
| 29 |
+
"sexist": false,
|
| 30 |
+
"explicit": false
|
| 31 |
+
}
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
Use:
|
| 35 |
+
```json
|
| 36 |
+
from datasets import load_dataset
|
| 37 |
+
dataset = load_dataset("kth8/jokes")
|
| 38 |
+
```
|
jokes.sft.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|