Datasets:
Tasks:
Text Generation
Modalities:
Text
Formats:
parquet
Languages:
Chinese
Size:
10K - 100K
Tags:
Erotic-literature
DOI:
License:
XuehangCang
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -81,4 +81,26 @@ Given its nature, this dataset is designed for creating and tuning AI models wit
|
|
81 |
|
82 |
The dataset can be accessed via downloading the files described in the configuration section. Ensure to comply with the MIT license terms when using this dataset in applications or research.
|
83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
For further details or questions about this dataset, users should refer to the relevant sections of the providing platform or contact repository maintainers.
|
|
|
81 |
|
82 |
The dataset can be accessed via downloading the files described in the configuration section. Ensure to comply with the MIT license terms when using this dataset in applications or research.
|
83 |
|
84 |
+
```python
|
85 |
+
from datasets import load_dataset
|
86 |
+
|
87 |
+
ds = load_dataset("XuehangCang/Erotic-literature")
|
88 |
+
print(ds)
|
89 |
+
|
90 |
+
"""
|
91 |
+
DatasetDict({
|
92 |
+
train: Dataset({
|
93 |
+
features: ['text'],
|
94 |
+
num_rows: 10557
|
95 |
+
})
|
96 |
+
test: Dataset({
|
97 |
+
features: ['text'],
|
98 |
+
num_rows: 100
|
99 |
+
})
|
100 |
+
})
|
101 |
+
"""
|
102 |
+
```
|
103 |
+
|
104 |
+
|
105 |
+
|
106 |
For further details or questions about this dataset, users should refer to the relevant sections of the providing platform or contact repository maintainers.
|