|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""The BookCorpus dataset based on Shawn Presser's work https://github.com/soskek/bookcorpus/issues/27 """ |
|
|
|
import datasets |
|
from datasets.exceptions import DefunctDatasetError |
|
|
|
|
|
_DESCRIPTION = """\ |
|
This dataset is Shawn Presser's work and is part of EleutherAi/The Pile dataset. \ |
|
This dataset contains all of bibliotik in plain .txt form, aka 197,000 books processed in exactly \ |
|
the same way as did for bookcorpusopen (a.k.a. books1). seems to be similar to OpenAI's mysterious \ |
|
"books2" dataset referenced in their papers. Unfortunately OpenAI will not give details, so we know \ |
|
very little about any differences. People suspect it's "all of libgen", but it's purely conjecture. |
|
""" |
|
|
|
_CITATION = """\ |
|
@article{pile, |
|
title={The {P}ile: An 800GB Dataset of Diverse Text for Language Modeling}, |
|
author={Gao, Leo and Biderman, Stella and Black, Sid and Golding, Laurence and Hoppe, Travis and Foster, Charles and Phang, Jason and He, Horace and Thite, Anish and Nabeshima, Noa and Presser, Shawn and Leahy, Connor}, |
|
journal={arXiv preprint arXiv:2101.00027}, |
|
year={2020} |
|
} |
|
""" |
|
_PROJECT_URL = "https://github.com/soskek/bookcorpus/issues/27#issuecomment-716104208" |
|
_HOST_URL = "https://the-eye.eu" |
|
_DOWNLOAD_URL = f"{_HOST_URL}/public/AI/pile_preliminary_components/books3.tar.gz" |
|
|
|
|
|
class Books3Config(datasets.BuilderConfig): |
|
"""BuilderConfig for ThePileBooks3.""" |
|
|
|
def __init__(self, **kwargs): |
|
"""BuilderConfig for ThePileBooks3. |
|
Args: |
|
**kwargs: keyword arguments forwarded to super. |
|
""" |
|
super(Books3Config, self).__init__(version=datasets.Version("1.0.0", ""), **kwargs) |
|
|
|
|
|
class ThePileBooks3(datasets.GeneratorBasedBuilder): |
|
"""Books3 dataset.""" |
|
|
|
BUILDER_CONFIGS = [ |
|
Books3Config( |
|
name="plain_text", |
|
description="Plain text", |
|
) |
|
] |
|
|
|
DEFAULT_WRITER_BATCH_SIZE = 500 |
|
|
|
def _info(self): |
|
raise DefunctDatasetError( |
|
"Dataset 'the_pile_books3' is defunct and no longer accessible due to reported copyright infringement" |
|
) |
|
return datasets.DatasetInfo( |
|
description=_DESCRIPTION, |
|
features=datasets.Features( |
|
{ |
|
"title": datasets.Value("string"), |
|
"text": datasets.Value("string"), |
|
} |
|
), |
|
supervised_keys=None, |
|
homepage=_PROJECT_URL, |
|
citation=_CITATION, |
|
) |
|
|
|
def _split_generators(self, dl_manager): |
|
archive = dl_manager.download(_DOWNLOAD_URL) |
|
|
|
return [ |
|
datasets.SplitGenerator( |
|
name=datasets.Split.TRAIN, |
|
gen_kwargs={ |
|
"files": dl_manager.iter_archive(archive), |
|
}, |
|
) |
|
] |
|
|
|
def _generate_examples(self, files): |
|
_id = 0 |
|
for path, f in files: |
|
if path.endswith(".epub.txt"): |
|
entry = {"title": path.split("/")[-1].split(".")[0], "text": f.read().decode("utf-8")} |
|
yield _id, entry |
|
_id += 1 |
|
|