Initial upload of AI wit training dataset
Browse files- .gitattributes +1 -0
- README.md +39 -0
- train.jsonl +3 -0
- validation.jsonl +0 -0
.gitattributes
CHANGED
|
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
train.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# AI Wit Training Dataset
|
| 2 |
+
|
| 3 |
+
This dataset contains witty comeback and humor training data for fine-tuning language models.
|
| 4 |
+
|
| 5 |
+
## Dataset Description
|
| 6 |
+
|
| 7 |
+
- **Total Samples**: 132,156
|
| 8 |
+
- **Training Samples**: 118,940
|
| 9 |
+
- **Validation Samples**: 13,216
|
| 10 |
+
- **Format**: Llama 3.1 chat format
|
| 11 |
+
- **Source**: Reddit jokes and witty responses
|
| 12 |
+
|
| 13 |
+
## Dataset Structure
|
| 14 |
+
|
| 15 |
+
Each sample contains:
|
| 16 |
+
- `messages`: List of user/assistant conversation
|
| 17 |
+
- `source`: Data source (e.g., "reddit_jokes")
|
| 18 |
+
- `style`: Response style (e.g., "humorous", "witty")
|
| 19 |
+
|
| 20 |
+
## Usage
|
| 21 |
+
|
| 22 |
+
This dataset is designed for fine-tuning conversational AI models to generate witty, humorous responses to offensive or provocative inputs.
|
| 23 |
+
|
| 24 |
+
## Example
|
| 25 |
+
|
| 26 |
+
```json
|
| 27 |
+
{
|
| 28 |
+
"messages": [
|
| 29 |
+
{"role": "user", "content": "You're so dumb"},
|
| 30 |
+
{"role": "assistant", "content": "I may be dumb, but at least I'm not the one who thinks intelligence is measured by insults"}
|
| 31 |
+
],
|
| 32 |
+
"source": "reddit_jokes",
|
| 33 |
+
"style": "witty"
|
| 34 |
+
}
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## Training
|
| 38 |
+
|
| 39 |
+
Use with HuggingFace Transformers for fine-tuning Llama 3.1 or similar models.
|
train.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a948369b92676eb46d0dc507c505552a3aea2d0d932aace5230eaca4688130cc
|
| 3 |
+
size 27458647
|
validation.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|