Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -44,3 +44,38 @@ dataset_info:
|
|
44 |
download_size: 9088732820
|
45 |
dataset_size: 17691843095
|
46 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
download_size: 9088732820
|
45 |
dataset_size: 17691843095
|
46 |
---
|
47 |
+
|
48 |
+
# Ficbook dataset
|
49 |
+
|
50 |
+
## Table of Contents
|
51 |
+
- [Table of Contents](#table-of-contents)
|
52 |
+
- [Description](#description)
|
53 |
+
- [Usage](#usage)
|
54 |
+
- [Personal and Sensitive Information](#personal-and-sensitive-information)
|
55 |
+
|
56 |
+
## Description
|
57 |
+
|
58 |
+
**Summary:** Dataset of fan fiction stories from [ficbook.net](https://ficbook.net/).
|
59 |
+
|
60 |
+
**Script:** [create_ficbook.py](https://github.com/IlyaGusev/rulm/blob/master/data_processing/create_ficbook.py)
|
61 |
+
|
62 |
+
**Point of Contact:** [Ilya Gusev](phoenixilya@gmail.com)
|
63 |
+
|
64 |
+
**Languages:** Mostly Russian
|
65 |
+
|
66 |
+
|
67 |
+
## Usage
|
68 |
+
|
69 |
+
Dataset iteration:
|
70 |
+
```python
|
71 |
+
from datasets import load_dataset
|
72 |
+
dataset = load_dataset('IlyaGusev/ficbook', split="train", streaming=True)
|
73 |
+
for example in dataset:
|
74 |
+
print(example["parts"][0]["clean_text"])
|
75 |
+
```
|
76 |
+
|
77 |
+
## Personal and Sensitive Information
|
78 |
+
|
79 |
+
Information about the original authors is included in the dataset where possible. Many stories from the dataset contain NSFW content.
|
80 |
+
|
81 |
+
|