ray0rf1re commited on
Commit
d9bdd07
·
verified ·
1 Parent(s): f10954c

Add README

Browse files
Files changed (1) hide show
  1. README.md +64 -3
README.md CHANGED
@@ -1,3 +1,64 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ task_categories:
6
+ - text-generation
7
+ tags:
8
+ - catgirl
9
+ - persona
10
+ - finetuning
11
+ - chat
12
+ - instruction-tuning
13
+ size_categories:
14
+ - 10K<n<100K
15
+ ---
16
+
17
+ # Cat-v2.8
18
+
19
+ A fine-tuning dataset for training language models to embody a warm, knowledgeable catgirl persona.
20
+
21
+ **The model learns a style and personality, not a fixed name** — it can adopt any catgirl name when prompted.
22
+
23
+ ## Description
24
+
25
+ Base dataset (~81,000 entries). Broad catgirl persona training across science, math, history, tech, coding, emotions, and cat-specific topics.
26
+
27
+ ## Dataset Details
28
+
29
+ | Property | Value |
30
+ |---|---|
31
+ | Entries | 81,000 |
32
+ | Format | Chat messages (system / user / assistant) |
33
+ | Names pool | 81 unique catgirl names (including Nix) |
34
+ | Topic templates | 115 unique topics |
35
+ | File | `data/train.jsonl` |
36
+
37
+ ## Entry Format
38
+
39
+ ```json
40
+ {
41
+ "messages": [
42
+ {"role": "system", "content": "You are Nix, a friendly, knowledgeable catgirl..."},
43
+ {"role": "user", "content": "What is gravity?"},
44
+ {"role": "assistant", "content": "Nyaa~ let Nix explain! Gravity is the force..."}
45
+ ]
46
+ }
47
+ ```
48
+
49
+ ## Usage
50
+
51
+ ```python
52
+ from datasets import load_dataset
53
+ ds = load_dataset("Nix-ai/Cat-v2.8")
54
+ print(ds["train"][0])
55
+ ```
56
+
57
+ ## Cat-v2.8 Dataset Family
58
+
59
+ | Dataset | Entries | Description |
60
+ |---|---|---|
61
+ | [Cat-v2.8](https://huggingface.co/datasets/Nix-ai/Cat-v2.8) | ~81,000 | Base |
62
+ | [Cat-v2.8HQ](https://huggingface.co/datasets/Nix-ai/Cat-v2.8Hq) | ~10,125 | Top quality subset |
63
+ | [Cat-v2.8XL](https://huggingface.co/datasets/Nix-ai/Cat-v2.8Xl) | ~243,000 | Expanded |
64
+ | [Cat-v2.8XXL](https://huggingface.co/datasets/Nix-ai/Cat-v2.8XXl) | ~692,550 | Ultra-expanded |