undeleted commited on
Commit
107ffb1
1 Parent(s): 6dc1f63

Add q-score distribution

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -102,7 +102,7 @@ This dataset is primarily intended for unsupervised training of text generation
102
  * `series`: series ID
103
  * `id`: chapter ID
104
  * `lang`: always `en` (English)
105
- * `q`: quality score between (0.0) terrible and 1.0 (perfect); anything with a score `> 0.5` is generally good enough
106
  * `title`: chapter and series title in the format `<chapter title> - <series title>`
107
  * `chapters`: total number of chapters in the series
108
  * `rating`: Scribble Hub rating between 0 and 5 stars
@@ -110,6 +110,22 @@ This dataset is primarily intended for unsupervised training of text generation
110
  * `author`: author name
111
  * `genre`: array of Scribble Hub genres for the series
112
  * `tags`: array of tags for the series
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
 
114
  ### Data Splits
115
 
 
102
  * `series`: series ID
103
  * `id`: chapter ID
104
  * `lang`: always `en` (English)
105
+ * `q`: quality score (q-score) between (0.0) terrible and 1.0 (perfect); anything with a score `> 0.5` is generally good enough
106
  * `title`: chapter and series title in the format `<chapter title> - <series title>`
107
  * `chapters`: total number of chapters in the series
108
  * `rating`: Scribble Hub rating between 0 and 5 stars
 
110
  * `author`: author name
111
  * `genre`: array of Scribble Hub genres for the series
112
  * `tags`: array of tags for the series
113
+
114
+ #### Q-Score Distribution
115
+
116
+ ```
117
+ 0.00: 0
118
+ 0.10: 0
119
+ 0.20: 0
120
+ 0.30: 84
121
+ 0.40: 718
122
+ 0.50: 3775
123
+ 0.60: 22300
124
+ 0.70: 72581
125
+ 0.80: 137982
126
+ 0.90: 135800
127
+ 1.00: 59
128
+ ```
129
 
130
  ### Data Splits
131