sedthh commited on
Commit
1566a8c
·
1 Parent(s): 4c7e185

- reupload with text_id included

Files changed (1) hide show
  1. README.md +80 -5
README.md CHANGED
@@ -9,11 +9,86 @@ dataset_info:
9
  dtype: string
10
  splits:
11
  - name: train
12
- num_bytes: 3127780102
13
  num_examples: 7907
14
- download_size: 1911528152
15
- dataset_size: 3127780102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ---
17
- # Dataset Card for "gutenberg_multilang"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
9
  dtype: string
10
  splits:
11
  - name: train
12
+ num_bytes: 3127637884
13
  num_examples: 7907
14
+ download_size: 1911478917
15
+ dataset_size: 3127637884
16
+ license: mit
17
+ task_categories:
18
+ - text-generation
19
+ language:
20
+ - es
21
+ - de
22
+ - fr
23
+ - nl
24
+ - it
25
+ - pt
26
+ - hu
27
+ tags:
28
+ - project gutenberg
29
+ - e-book
30
+ - gutenberg.org
31
+ pretty_name: Project Gutenberg eBooks in different languages
32
+ size_categories:
33
+ - 1K<n<10K
34
  ---
35
+ # Dataset Card for Project Gutenber - Multilanguage eBooks
36
+
37
+ A collection of non-english language eBooks (7907, about 75-80% of all the ES, DE, FR, NL, IT, PT, HU books available on the site) from the Project Gutenberg site with metadata removed.
38
+
39
+ Originally colected for https://github.com/LAION-AI/Open-Assistant
40
+
41
+ | LANG | EBOOKS |
42
+ |----|----|
43
+ | ES | 717 |
44
+ | DE | 1735 |
45
+ | FR | 2863 |
46
+ | NL | 904 |
47
+ | IT | 692 |
48
+ | PT | 501 |
49
+ | HU | 495 |
50
+
51
+ The METADATA column contains catalogue meta information on each book as a serialized JSON:
52
+
53
+ | key | original column |
54
+ |----|----|
55
+ | language | - |
56
+ | text_id | Text# unique book identifier on Prject Gutenberg as *int* |
57
+ | title | Title of the book as *string* |
58
+ | issued | Issued date as *string* |
59
+ | authors | Authors as *string*, comma separated sometimes with dates |
60
+ | subjects | Subjects as *string*, various formats |
61
+ | locc | LoCC code as *string* |
62
+ | bookshelves | Bookshelves as *string*, optional |
63
+
64
+ ## Source data
65
+
66
+ **How was the data generated?**
67
+
68
+ - A crawler (see Open-Assistant repository) downloaded the raw HTML code for
69
+ each eBook based on **Text#** id in the Gutenberg catalogue (if available)
70
+ - The metadata and the body of text are not clearly separated so an additional
71
+ parser attempts to split them, then remove transcriber's notes and e-book
72
+ related information from the body of text (text clearly marked as copyrighted or
73
+ malformed was skipped and not collected)
74
+ - The body of cleaned TEXT as well as the catalogue METADATA is then saved as
75
+ a parquet file, with all columns being strings
76
+
77
+ **Copyright notice:**
78
+
79
+ - Some of the books are copyrighted! The crawler ignored all books
80
+ with an english copyright header by utilizing a regex expression, but make
81
+ sure to check out the metadata for each book manually to ensure they are okay
82
+ to use in your country! More information on copyright:
83
+ https://www.gutenberg.org/help/copyright.html and
84
+ https://www.gutenberg.org/policy/permission.html
85
+ - Project Gutenberg has the following requests when using books without
86
+ metadata: _Books obtianed from the Project Gutenberg site should have the
87
+ following legal note next to them: "This eBook is for the use of anyone
88
+ anywhere in the United States and most other parts of the world at no cost and
89
+ with almost" no restrictions whatsoever. You may copy it, give it away or
90
+ re-use it under the terms of the Project Gutenberg License included with this
91
+ eBook or online at www.gutenberg.org. If you are not located in the United
92
+ States, you will have to check the laws of the country where you are located
93
+ before using this eBook."_
94