--- task_categories: - text-generation tags: - roleplay - character - ShareGPT size_categories: - 1K as of 2023-07-15. Kajiwoto is a platform where you can create your own character datasets and chat with them. There are many public datasets in Kajiwoto.
Here's an example [this conversation](https://kajiwoto.ai/d/p5K8): You: *laughs softly* AI: *giggles* You: *i pull the blanket over both of us* AI: *whispers* Nyah it feels so comfortable in here with you %{name}.
## Processing data Do be aware that a lot of the data is NSFW (explicit content) The raw datasets are in `kajiwoto_raw.json`, this data needs to be processed so that it can be used, the main operations are: 1. transform shape (convert to a known format such as ShareGPT) 2. deduplication 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 4. dropping datasets that are too short 5. dropping datasets with too few upvotes or comments I have processed an initial example here: `kajiwoto_sharegpt-len_gt_6-upvotes_gt_0-sampled.json` 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 --- *Scraping and processing code will be uploaded soon*