parquet-converter
commited on
Commit
•
7b022ad
1
Parent(s):
47e53ec
Update parquet files
Browse files- README.md +0 -206
- scribblehub17k-00.jsonl → default/train/0000.parquet +2 -2
- scribblehub17k-01.jsonl → default/train/0001.parquet +2 -2
- default/train/0002.parquet +3 -0
- default/train/0003.parquet +3 -0
- default/train/0004.parquet +3 -0
- default/train/0005.parquet +3 -0
- default/train/0006.parquet +3 -0
- default/train/0007.parquet +3 -0
- default/train/0008.parquet +3 -0
README.md
DELETED
@@ -1,206 +0,0 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
language:
|
4 |
-
- en
|
5 |
-
tags:
|
6 |
-
- novel
|
7 |
-
- training
|
8 |
-
- story
|
9 |
-
task_categories:
|
10 |
-
- text-classification
|
11 |
-
- text-generation
|
12 |
-
pretty_name: ScribbleHub17K
|
13 |
-
size_categories:
|
14 |
-
- 100K<n<1M
|
15 |
-
duplicated_from: RyokoAI/ScribbleHub17K
|
16 |
-
---
|
17 |
-
|
18 |
-
# Dataset Card for ScribbleHub17K
|
19 |
-
|
20 |
-
*The BigKnow2022 dataset and its subsets are not yet complete. Not all information here may be accurate or accessible.*
|
21 |
-
|
22 |
-
## Dataset Description
|
23 |
-
|
24 |
-
- **Homepage:** (TODO)
|
25 |
-
- **Repository:** <https://github.com/RyokoAI/BigKnow2022>
|
26 |
-
- **Paper:** N/A
|
27 |
-
- **Leaderboard:** N/A
|
28 |
-
- **Point of Contact:** Ronsor/undeleted <ronsor@ronsor.com>
|
29 |
-
|
30 |
-
### Dataset Summary
|
31 |
-
|
32 |
-
ScribbleHub17K is a dataset consisting of text from over 373,000 chapters across approximately 17,500 series posted on the
|
33 |
-
original story sharing site [Scribble Hub](https://scribblehub.com).
|
34 |
-
|
35 |
-
### Supported Tasks and Leaderboards
|
36 |
-
|
37 |
-
This dataset is primarily intended for unsupervised training of text generation models; however, it may be useful for other purposes.
|
38 |
-
|
39 |
-
* text-classification
|
40 |
-
* text-generation
|
41 |
-
|
42 |
-
### Languages
|
43 |
-
|
44 |
-
* English
|
45 |
-
|
46 |
-
## Dataset Structure
|
47 |
-
|
48 |
-
### Data Instances
|
49 |
-
|
50 |
-
```json
|
51 |
-
{
|
52 |
-
"text": " \n2082 Planet Earth the Fracture War, after a sudden fracture in our dimension unidentified beings with advance technology and u...",
|
53 |
-
"meta": {
|
54 |
-
"subset": "scribblehub",
|
55 |
-
"series": "3811",
|
56 |
-
"id": "3812",
|
57 |
-
"q": 0.91,
|
58 |
-
"title": "The First - Prologue- The Fracture War",
|
59 |
-
"author": "RobotLove",
|
60 |
-
"chapters": 1,
|
61 |
-
"rating": 5,
|
62 |
-
"rating_ct": 1,
|
63 |
-
"genre": [
|
64 |
-
"Action",
|
65 |
-
"Martial Arts",
|
66 |
-
"Romance"
|
67 |
-
],
|
68 |
-
"tags": [
|
69 |
-
"Kingdom Building",
|
70 |
-
"Loyal Subordinates",
|
71 |
-
"Male Protagonist",
|
72 |
-
"Organized Crime",
|
73 |
-
"Scheming"
|
74 |
-
]
|
75 |
-
}
|
76 |
-
}
|
77 |
-
{
|
78 |
-
"text": " For anyone that may see this, thanks for reading. I'm just here to see if a story can spill out of my mind if just start writin...",
|
79 |
-
"meta": {
|
80 |
-
"subset": "scribblehub",
|
81 |
-
"series": "586090",
|
82 |
-
"id": "586099",
|
83 |
-
"q": 0.82,
|
84 |
-
"title": "Just writing to write…i guess? - I’m here now",
|
85 |
-
"author": "BigOofStudios",
|
86 |
-
"chapters": 1,
|
87 |
-
"rating": 4.5,
|
88 |
-
"rating_ct": 2,
|
89 |
-
"genre": [
|
90 |
-
"Action",
|
91 |
-
"Comedy"
|
92 |
-
],
|
93 |
-
"tags": []
|
94 |
-
}
|
95 |
-
}
|
96 |
-
```
|
97 |
-
|
98 |
-
### Data Fields
|
99 |
-
|
100 |
-
* `text`: the actual chapter text
|
101 |
-
* `meta`: metadata for chapter and series
|
102 |
-
* `subset`: data source tag: `scribblehub`
|
103 |
-
* `series`: series ID
|
104 |
-
* `id`: chapter ID
|
105 |
-
* `lang`: always `en` (English)
|
106 |
-
* `q`: quality score (q-score) between (0.0) terrible and 1.0 (perfect); anything with a score `> 0.5` is generally good enough
|
107 |
-
* `title`: chapter and series title in the format `<chapter title> - <series title>`
|
108 |
-
* `chapters`: total number of chapters in the series
|
109 |
-
* `rating`: Scribble Hub rating between 0 and 5 stars
|
110 |
-
* `rating_ct`: number of ratings
|
111 |
-
* `author`: author name
|
112 |
-
* `genre`: array of Scribble Hub genres for the series
|
113 |
-
* `tags`: array of tags for the series
|
114 |
-
|
115 |
-
#### Q-Score Distribution
|
116 |
-
|
117 |
-
```
|
118 |
-
0.00: 0
|
119 |
-
0.10: 0
|
120 |
-
0.20: 0
|
121 |
-
0.30: 84
|
122 |
-
0.40: 718
|
123 |
-
0.50: 3775
|
124 |
-
0.60: 22300
|
125 |
-
0.70: 72581
|
126 |
-
0.80: 137982
|
127 |
-
0.90: 135800
|
128 |
-
1.00: 59
|
129 |
-
```
|
130 |
-
|
131 |
-
### Data Splits
|
132 |
-
|
133 |
-
No splitting of the data was performed.
|
134 |
-
|
135 |
-
## Dataset Creation
|
136 |
-
|
137 |
-
### Curation Rationale
|
138 |
-
|
139 |
-
Scribble Hub is a home for original web stories, effectively a smaller, English version of Japan's Syosetuka ni Narou. As a
|
140 |
-
result, it is a good source for reasonably well written creative content.
|
141 |
-
|
142 |
-
### Source Data
|
143 |
-
|
144 |
-
#### Initial Data Collection and Normalization
|
145 |
-
|
146 |
-
TODO
|
147 |
-
|
148 |
-
#### Who are the source language producers?
|
149 |
-
|
150 |
-
The authors of each novel.
|
151 |
-
|
152 |
-
### Annotations
|
153 |
-
|
154 |
-
#### Annotation process
|
155 |
-
|
156 |
-
Title, ratings, and other metadata were parsed out using scripts that will be provided in the BigKnow2022 GitHub repository.
|
157 |
-
|
158 |
-
#### Who are the annotators?
|
159 |
-
|
160 |
-
No human annotators.
|
161 |
-
|
162 |
-
### Personal and Sensitive Information
|
163 |
-
|
164 |
-
The dataset contains only works of fiction, and we do not believe it contains any PII.
|
165 |
-
|
166 |
-
## Considerations for Using the Data
|
167 |
-
|
168 |
-
### Social Impact of Dataset
|
169 |
-
|
170 |
-
This dataset is intended to be useful for anyone who wishes to train a model to generate "more entertaining" content.
|
171 |
-
It may also be useful for other languages depending on your language model.
|
172 |
-
|
173 |
-
### Discussion of Biases
|
174 |
-
|
175 |
-
This dataset is composed of fictional works by various authors. Because of this fact, the contents of this dataset will reflect
|
176 |
-
the biases of those authors. **Additionally, this dataset contains NSFW material and was not filtered. Beware of stereotypes.**
|
177 |
-
|
178 |
-
### Other Known Limitations
|
179 |
-
|
180 |
-
N/A
|
181 |
-
|
182 |
-
## Additional Information
|
183 |
-
|
184 |
-
### Dataset Curators
|
185 |
-
|
186 |
-
Ronsor Labs
|
187 |
-
|
188 |
-
### Licensing Information
|
189 |
-
|
190 |
-
Apache 2.0, for all parts of which Ronsor Labs or the Ryoko AI Production Committee may be considered authors. All other material is
|
191 |
-
distributed under fair use principles.
|
192 |
-
|
193 |
-
### Citation Information
|
194 |
-
|
195 |
-
```
|
196 |
-
@misc{ryokoai2023-bigknow2022,
|
197 |
-
title = {BigKnow2022: Bringing Language Models Up to Speed},
|
198 |
-
author = {Ronsor},
|
199 |
-
year = {2023},
|
200 |
-
howpublished = {\url{https://github.com/RyokoAI/BigKnow2022}},
|
201 |
-
}
|
202 |
-
```
|
203 |
-
|
204 |
-
### Contributions
|
205 |
-
|
206 |
-
Thanks to @ronsor (GH) for gathering this dataset.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
scribblehub17k-00.jsonl → default/train/0000.parquet
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9d1424500a6d3312d4bec4f5fd4e2d264c1c7041faecf46f52b5014cd3ba678e
|
3 |
+
size 287671463
|
scribblehub17k-01.jsonl → default/train/0001.parquet
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d432ed41fed4d783351c5a5dec4bf7f9f2bff6d17b29467caa9d1f2c35bc52e
|
3 |
+
size 287872731
|
default/train/0002.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f783946a05ac68dac00ccbd678355c0b6dcba1c59dafb285ecd6e68779630c26
|
3 |
+
size 286814735
|
default/train/0003.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d0277faab83156578550f13b25c6329a7c62f480e6caa548db57ba4a81a0540
|
3 |
+
size 286058321
|
default/train/0004.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f576b992e2ac0606edb7bafb99a0cc091301781d6dda85a5cf101146c421ba21
|
3 |
+
size 286615444
|
default/train/0005.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32e07e84fb2cc5e6bf83cb88ab46ad0c672e86d73381d6937904f9174bfa611e
|
3 |
+
size 288468977
|
default/train/0006.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:804fb08de8053409c8dd5c0e3a0876681aacbc9e78b184d0f4ffc8aa5dd5121f
|
3 |
+
size 288195128
|
default/train/0007.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a6749024430c246cf911a593ee550520ed786b717d277ba29b1af017b3deebbd
|
3 |
+
size 289332754
|
default/train/0008.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fb61c7cf57419bdce0eba9511b43641191b22a9571ca1c26e2d80732c1dd8c23
|
3 |
+
size 251044872
|