text
stringlengths 1.42k
44.9M
| title
stringlengths 0
637
| author
stringlengths 0
68
| author year of birth
stringclasses 220
values | author year of death
stringclasses 231
values | language
stringclasses 5
values | downloads
stringclasses 289
values | subjects
stringlengths 5
635
| document id
stringlengths 3
7
| type
stringclasses 1
value |
---|---|---|---|---|---|---|---|---|---|
"\n\n\n\n\nTranscriber's note: A few typographical errors have been corrected: they\n are listed at(...TRUNCATED) | Modern Painters, Volume 4 (of 5) | Ruskin, John | 1819 | 1900 | ['en'] | 270 | {'Painting', 'Aesthetics'} | PG31623 | Text |
" \n\nThis eBook was produced by David Widger\n\n\n\n\n\nBOOK SIXTH.\n\n\nINITIAL CHAPTER.\n\(...TRUNCATED) | "My Novel" — Volume 06 | Lytton, Edward Bulwer Lytton, Baron | 1803 | 1873 | ['en'] | 42 | "{'Germany -- Fiction', 'Death -- Fiction', 'Inventors -- Fiction', 'Domestic fiction', 'Poets -- Fi(...TRUNCATED) | PG7707 | Text |
"\n\n\n\ncover \n\n\n\nThe Mysteries of Udolpho\n\n A Romance \n\n Interspersed With Some Pieces of (...TRUNCATED) | The Mysteries of Udolpho | Radcliffe, Ann Ward | 1764 | 1823 | ['en'] | 1172 | "{'Inheritance and succession -- Fiction', 'Young women -- Fiction', 'Orphans -- Fiction', 'Italy --(...TRUNCATED) | PG3268 | Text |
"\n\n\n\n\n\n\n\n\n THE\n HISTORY OF ANTIQUITY.\n\n FROM THE GERMAN\n OF\n PROFESSOR MAX DUNCKE(...TRUNCATED) | The History of Antiquity, Vol. 5 (of 6) | Duncker, Max | 1811 | 1886 | ['en'] | 83 | {'History, Ancient'} | PG38209 | Text |
"NO. 4, APRIL 1842 ***\n\n GRAHAM’S MAGAZINE.\n Vol. XX(...TRUNCATED) | Graham's Magazine, Vol. XX, No. 4, April 1842 | Various | ['en'] | 21 | {'Literature -- Periodicals', 'Literature, Modern -- 19th century -- Periodicals'} | PG67456 | Text |
||
"\n\n\n\n\n\n\n ONESIMUS\n\n Memoirs of a Disciple o(...TRUNCATED) | Onesimus: Memoirs of a Disciple of St. Paul | Abbott, Edwin Abbott | 1838 | 1926 | ['en'] | 62 | "{'Christian saints -- Fiction', 'Christian fiction', 'Biographical fiction', 'Ephesus (Extinct city(...TRUNCATED) | PG54223 | Text |
"\n\n\nHISTORY OF RELIGION\n\nA Sketch of Primitive Religious Beliefs and Practices, and of the\nOri(...TRUNCATED) | "History of Religion: A Sketch of Primitive Religious Beliefs and Practices, and of the Origin and C(...TRUNCATED) | Menzies, Allan | 1845 | 1916 | ['en'] | 75 | {'Religions'} | PG29893 | Text |
"\n\n\n\n\n\nTHE AUGUSTAN REPRINT SOCIETY\n\n\nTHE REFORMED LIBRARIE-KEEPER\n\n(1650)\n\n\nJOHN DURY(...TRUNCATED) | The Reformed Librarie-Keeper (1650) | Dury, John | 1596 | 1680 | ['en'] | 30 | {'Library science -- Early works to 1800'} | PG15199 | Text |
"Team (http://www.pgdp.net) from page images generously made available by\nInternet Archive (https:/(...TRUNCATED) | Charles Sumner: his complete works, volume 10 (of 20) | Sumner, Charles | 1811 | 1874 | ['en'] | 52 | {'Slavery -- United States', 'Speeches, addresses, etc., American'} | PG48285 | Text |
"\n\n\n\n\n\n\n\n\n LOVE AND HATRED\n\n By MRS. B(...TRUNCATED) | Love and hatred | Lowndes, Marie Belloc | 1868 | 1947 | ['en'] | 58 | {'Detective and mystery stories', 'Man-woman relationships -- Fiction', 'Murder -- Fiction'} | PG36079 | Text |
End of preview. Expand
in Dataset Viewer.
This repository contains a snapshot of the English subset of the Project Gutenberg corpus (containing ~59K documents in total),
downloaded in September 2024, preprocessed with code from this repository, and reformatted to make it easier to use with
the load_dataset
interface of Hugging Face's datasets
library.
In addition to the full dataset (under the directory eminorhan/gutenberg_en_sep24/all
),
I also provide two random subsets of the data containing roughly 10M and 100M words (corresponding to 275 and ~1.6K documents, respectively).
These subsets are intended to be used for the BabyLM challenge.
You can load these datasets as follows:
from datasets import load_dataset
ds_10M = load_dataset("eminorhan/gutenberg_en_sep24", "10M") # 10M word subset (275 documents)
ds_100M = load_dataset("eminorhan/gutenberg_en_sep24", "100M") # 100M word subset (~1.6K documents)
ds_all = load_dataset("eminorhan/gutenberg_en_sep24", "all") # the full data (~59K documents)
Both subsets come with train
/validation
splits, whereas the full data only has a train
split.
- Downloads last month
- 200