XuehangCang commited on
Commit
ce90a31
·
verified ·
1 Parent(s): 35e7518

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
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.