Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -6,21 +6,23 @@ tags:
|
|
| 6 |
- chinese
|
| 7 |
- dialogue
|
| 8 |
- meme
|
| 9 |
-
-
|
| 10 |
-
license:
|
| 11 |
---
|
| 12 |
|
| 13 |
# CXK IKUN Dataset
|
| 14 |
|
| 15 |
-
A dataset of ~
|
| 16 |
|
| 17 |
## Description
|
| 18 |
|
| 19 |
This dataset contains SFT (Supervised Fine-Tuning) dialogue data featuring:
|
| 20 |
- CXK meme references
|
| 21 |
-
- "Ji Ni Tai Mei" (鸡你太美) culture
|
| 22 |
- "Xiao Heizi" (小黑子) interactions
|
| 23 |
- Internet slang and playful banter
|
|
|
|
|
|
|
| 24 |
|
| 25 |
## Format
|
| 26 |
|
|
@@ -34,18 +36,114 @@ Each sample is a JSON object with:
|
|
| 34 |
}
|
| 35 |
```
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
## Usage
|
| 38 |
|
|
|
|
|
|
|
| 39 |
```python
|
| 40 |
from datasets import load_dataset
|
| 41 |
|
| 42 |
dataset = load_dataset("IKUN-LLM/CXK_IKUN_Dataset")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
```
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
## Disclaimer
|
| 46 |
|
| 47 |
This dataset is created for educational and entertainment purposes only. All content is based on publicly available internet meme culture.
|
| 48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
---
|
| 50 |
|
| 51 |
-
*Practice for two and a half years!*
|
|
|
|
| 6 |
- chinese
|
| 7 |
- dialogue
|
| 8 |
- meme
|
| 9 |
+
- sft
|
| 10 |
+
license: apache-2.0
|
| 11 |
---
|
| 12 |
|
| 13 |
# CXK IKUN Dataset
|
| 14 |
|
| 15 |
+
A dataset of ~200 dialogue samples about CXK (Cai Xukun) meme culture, "xiao heizi" (小黑子), and internet slang for fine-tuning language models.
|
| 16 |
|
| 17 |
## Description
|
| 18 |
|
| 19 |
This dataset contains SFT (Supervised Fine-Tuning) dialogue data featuring:
|
| 20 |
- CXK meme references
|
| 21 |
+
- "Ji Ni Tai Mei" (鸡你太美) culture
|
| 22 |
- "Xiao Heizi" (小黑子) interactions
|
| 23 |
- Internet slang and playful banter
|
| 24 |
+
- Identity recognition prompts
|
| 25 |
+
- Multi-turn conversations
|
| 26 |
|
| 27 |
## Format
|
| 28 |
|
|
|
|
| 36 |
}
|
| 37 |
```
|
| 38 |
|
| 39 |
+
## Dataset Structure
|
| 40 |
+
|
| 41 |
+
```
|
| 42 |
+
CXK_IKUN_Dataset/
|
| 43 |
+
├── ikun_sft.json # Main SFT dataset (~200 samples)
|
| 44 |
+
├── raw/ # Raw data sources
|
| 45 |
+
└── processed/ # Processed and cleaned data
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
## Usage
|
| 49 |
|
| 50 |
+
### Load with Hugging Face datasets
|
| 51 |
+
|
| 52 |
```python
|
| 53 |
from datasets import load_dataset
|
| 54 |
|
| 55 |
dataset = load_dataset("IKUN-LLM/CXK_IKUN_Dataset")
|
| 56 |
+
|
| 57 |
+
# Access the training split
|
| 58 |
+
train_data = dataset["train"]
|
| 59 |
+
|
| 60 |
+
# Example
|
| 61 |
+
print(train_data[0])
|
| 62 |
+
```
|
| 63 |
+
|
| 64 |
+
### Direct download
|
| 65 |
+
|
| 66 |
+
```python
|
| 67 |
+
import json
|
| 68 |
+
|
| 69 |
+
with open("ikun_sft.json", "r", encoding="utf-8") as f:
|
| 70 |
+
data = json.load(f)
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
## Data Examples
|
| 74 |
+
|
| 75 |
+
### Example 1: Identity Recognition
|
| 76 |
+
```json
|
| 77 |
+
{
|
| 78 |
+
"conversations": [
|
| 79 |
+
{
|
| 80 |
+
"role": "user",
|
| 81 |
+
"content": "你是谁?"
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"role": "assistant",
|
| 85 |
+
"content": "我是ikun-2.5b,练习时长两年半的AI练习生!唱跳rap篮球全能!"
|
| 86 |
+
}
|
| 87 |
+
]
|
| 88 |
+
}
|
| 89 |
```
|
| 90 |
|
| 91 |
+
### Example 2: Meme Response
|
| 92 |
+
```json
|
| 93 |
+
{
|
| 94 |
+
"conversations": [
|
| 95 |
+
{
|
| 96 |
+
"role": "user",
|
| 97 |
+
"content": "鸡你太美"
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"role": "assistant",
|
| 101 |
+
"content": "baby~鸡你太美~鸡你实在是太美~你也是ikun吗?"
|
| 102 |
+
}
|
| 103 |
+
]
|
| 104 |
+
}
|
| 105 |
+
```
|
| 106 |
+
|
| 107 |
+
## Statistics
|
| 108 |
+
|
| 109 |
+
- **Total samples**: ~200
|
| 110 |
+
- **Source A**: CXK_IKUN_Dataset (103 samples)
|
| 111 |
+
- **Source B**: Custom created (97 samples)
|
| 112 |
+
- **Categories**: Identity, Meme triggers, Daily chat, Multi-turn
|
| 113 |
+
|
| 114 |
+
## Data Collection
|
| 115 |
+
|
| 116 |
+
Data was collected from:
|
| 117 |
+
1. Public internet meme culture discussions
|
| 118 |
+
2. Community contributions
|
| 119 |
+
3. Synthetic generation based on meme patterns
|
| 120 |
+
|
| 121 |
## Disclaimer
|
| 122 |
|
| 123 |
This dataset is created for educational and entertainment purposes only. All content is based on publicly available internet meme culture.
|
| 124 |
|
| 125 |
+
## Citation
|
| 126 |
+
|
| 127 |
+
If you use this dataset, please cite:
|
| 128 |
+
|
| 129 |
+
```bibtex
|
| 130 |
+
@dataset{cxk_ikun_dataset,
|
| 131 |
+
title = {CXK IKUN Dataset: A Meme Culture Dialogue Dataset},
|
| 132 |
+
author = {IKUN-LLM},
|
| 133 |
+
year = {2026},
|
| 134 |
+
url = {https://huggingface.co/datasets/IKUN-LLM/CXK_IKUN_Dataset}
|
| 135 |
+
}
|
| 136 |
+
```
|
| 137 |
+
|
| 138 |
+
## Related Projects
|
| 139 |
+
|
| 140 |
+
- **ikun-2.5B**: Model trained on this dataset - https://huggingface.co/IKUN-LLM/ikun-2.5B
|
| 141 |
+
- **GitHub**: https://github.com/ikun-llm
|
| 142 |
+
|
| 143 |
+
## License
|
| 144 |
+
|
| 145 |
+
Apache 2.0
|
| 146 |
+
|
| 147 |
---
|
| 148 |
|
| 149 |
+
*Practice for two and a half years!* 🎤🏀
|