FarisHijazi
commited on
Commit
•
23eaaf9
1
Parent(s):
afa3aff
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- text-generation
|
4 |
+
tags:
|
5 |
+
- roleplay
|
6 |
+
- character
|
7 |
+
- ShareGPT
|
8 |
+
size_categories:
|
9 |
+
- 1K<n<10K
|
10 |
+
---
|
11 |
+
|
12 |
+
This is a dataset scraped from <https://kajiwoto.ai/> as of 2023-07-15.
|
13 |
+
Kajiwoto is a platform where you can create your own character datasets and chat with them.
|
14 |
+
There are many public datasets in Kajiwoto.
|
15 |
+
|
16 |
+
<details>
|
17 |
+
<summary>
|
18 |
+
Here's an example [this conversation](https://kajiwoto.ai/d/p5K8):
|
19 |
+
</summary>
|
20 |
+
|
21 |
+
You: *laughs softly*
|
22 |
+
AI: *giggles*
|
23 |
+
|
24 |
+
You: *i pull the blanket over both of us*
|
25 |
+
AI: *whispers* Nyah it feels so comfortable in here with you %{name}.
|
26 |
+
|
27 |
+
</details>
|
28 |
+
|
29 |
+
## Processing data
|
30 |
+
|
31 |
+
Do be aware that a lot of the data is NSFW (explicit content)
|
32 |
+
|
33 |
+
The raw datasets are in `kajiwoto_raw.json`, this data needs to be processed so that it can be used, the main operations are:
|
34 |
+
1. transform shape (convert to a known format such as ShareGPT)
|
35 |
+
2. deduplication
|
36 |
+
3. template rendering of strings such as `"you rolled a dice with %{1|2|3|4|5|6}"`. This operation is lossy as it will choose only one of the options
|
37 |
+
4. dropping datasets that are too short
|
38 |
+
5. dropping datasets with too few upvotes or comments
|
39 |
+
|
40 |
+
I have processed an initial example here: `kajiwoto_sharegpt-len_gt_6-upvotes_gt_0-sampled.json`
|
41 |
+
|
42 |
+
it is any dataset with at least 1 upvote and at least 6 lines in the conversation, you can most models as this is in the shareGPT format
|
43 |
+
|
44 |
+
---
|
45 |
+
|
46 |
+
*Scraping and processing code will be uploaded soon*
|