Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -14,16 +14,39 @@ The intended use-case is for document translation tasks.
|
|
14 |
# Dataset format
|
15 |
```json
|
16 |
{
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
}
|
27 |
```
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
# Dataset format
|
15 |
```json
|
16 |
{
|
17 |
+
'src': 'JAPANESE WEB NOVEL CHAPTER',
|
18 |
+
'trg': 'CORRESPONDING ENGLISH TRANSLATION',
|
19 |
+
'meta': {
|
20 |
+
'general': {
|
21 |
+
'series_title_eng': 'ENGLISH SERIES TITLE',
|
22 |
+
'series_title_jap': 'JAPANESE SERIES TITLE',
|
23 |
+
'sentence_alignment_score': 'ALIGNMENT SCORE'
|
24 |
+
},
|
25 |
+
'novelupdates': {
|
26 |
+
'link': 'NOVELUPDATES URL',
|
27 |
+
'genres': 'NOVELUPDATES GENRES',
|
28 |
+
'tags': 'NOVELUPDATES TAGS (think sub-genres)',
|
29 |
+
'rating': 'NOVELUPDATES RATING (X/5)',
|
30 |
+
'rating_votes': 'NOVELUPDATES RATING VOTES'
|
31 |
+
},
|
32 |
+
'syosetu': {
|
33 |
+
'link': 'SYOSETU URL',
|
34 |
+
'series_active': 'IS THE SERIES STILL UP ON SYOSETU (is false for 3 series, each one has no syosetu metadata beyond the link and active status)',
|
35 |
+
'writer': 'AUTHOR'S NAME ON SYOSETU',
|
36 |
+
'fav_novel_cnt': 'FROM SYOSETU API FOR CHECKING SERIES QUALITY',
|
37 |
+
'global_points': 'ALSO FROM SYOSETU API FOR CHECKING SERIES QUALITY'
|
38 |
+
}
|
39 |
+
|
40 |
}
|
41 |
}
|
42 |
```
|
43 |
+
This is version 2 of the dataset. It contains more series (roughtly three thousand more), but has fewer tokens due to an overhaul of alignment code.
|
44 |
+
This version should fix the issues found in discussions #3 and #4, and adds series-specific metadata as requested in #1.
|
45 |
+
No translation quality filtering has been applied to the dataset. Methods for doing so are being researched.
|
46 |
+
|
47 |
+
License note:
|
48 |
+
The texts and site-specific metadata is distributed under fair use principles, with everything else being under an Apache 2.0 license.
|
49 |
+
If an author, translator or one of the sites mentioned above requests a takedown of one or more series, it will be promptly addressed.
|
50 |
+
Takedowns can be requested through the creation of a Huggingface disscussion.
|
51 |
+
|
52 |
+
I am not a lawyer, and the above notice is probably not legally sound. As such, I recommend discretion when using the contents of the dataset.
|