[中文](README.md) # Chinese Erotic Literature Datasets Collection ## Overview This repository contains a collection of 40 Chinese erotic literature datasets. Each dataset is composed of short erotic stories, personal experiences, and various other forms of explicit content. The datasets are structured in JSON format, where each file contains an array of objects, with each object representing a document: ```json [ {"text": "document"}, {"text": "document"} ] ``` These datasets can be utilized for the pre-training of language models and, with appropriate adjustments, can also be employed for fine-tuning models. ## Dataset Format - **File Format:** JSON - **Content:** Short erotic stories, explicit personal experiences, and other types of adult content. - **Structure:** - Each file contains an array of objects. - Each object includes a single key `"text"` with the corresponding document as its value. ## Usage These datasets are intended for research purposes, particularly in the development and fine-tuning of language models. Due to the explicit nature of the content, users should handle these datasets with caution and ensure compliance with local regulations and guidelines. ### Example Usage ```python import json # Load a dataset with open('path_to_json_file.json', 'r', encoding='utf-8') as file: data = json.load(file) # Access the text content for document in data: print(document['text']) ``` ## Disclaimer The content of these datasets is of an explicit adult nature and is intended solely for research purposes. The datasets may contain offensive or inappropriate material. By using these datasets, you agree to take full responsibility for any consequences resulting from their use. Users must ensure that they comply with all applicable laws and regulations in their jurisdiction before using or distributing these datasets. The creators of this dataset collection bear no responsibility for any misuse of the content provided.