Datasets:
File size: 4,551 Bytes
8cbc537 a5ae8a0 8cbc537 5847a97 8cbc537 d2e729b 8cbc537 e964f8d 8cbc537 8d27a2d 8cbc537 47b1b16 8cbc537 47b1b16 8cbc537 47b1b16 8cbc537 91c87a2 e964f8d 8cbc537 e964f8d 8cbc537 e2f4cd3 8cbc537 1aa031b e2f4cd3 8cbc537 1aa031b 8cbc537 e2f4cd3 8cbc537 94c002a 8cbc537 1aa031b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""naab: A ready-to-use plug-and-play corpus in Farsi"""
import csv
import json
import os
import datasets
# TODO: Add BibTeX citation
# Find for instance the citation on arxiv or on the dataset repo/website
_CITATION = """\
@misc{https://doi.org/10.48550/arxiv.2208.13486,
doi = {10.48550/ARXIV.2208.13486},
url = {https://arxiv.org/abs/2208.13486},
author = {Sabouri, Sadra and Rahmati, Elnaz and Gooran, Soroush and Sameti, Hossein},
keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
title = {naab: A ready-to-use plug-and-play corpus for Farsi},
publisher = {arXiv},
year = {2022},
copyright = {Creative Commons Attribution Non Commercial Share Alike 4.0 International}
}
"""
# You can copy an official description
_DESCRIPTION = """\
Huge corpora of textual data are always known to be a crucial need for training deep models such as transformer-based ones. This issue is emerging more in lower resource languages - like Farsi. We propose naab, the biggest cleaned and ready-to-use open-source textual corpus in Farsi. It contains about 130GB of data, 250 million paragraphs, and 15 billion words. The project name is derived from the Farsi word ناب which means pure and high-grade.
"""
_HOMEPAGE = "https://huggingface.co/datasets/SLPL/naab"
_LICENSE = "mit"
N_FILES = {
"train": 126,
"test": 3
}
_BASE_URL = "https://huggingface.co/datasets/SLPL/naab/resolve/main/data/"
_URLS = {
"train": [_BASE_URL + "train-{:05d}-of-{:05d}.txt".format(x, N_FILES["train"]) for x in range(N_FILES["train"])],
"test": [_BASE_URL + "test-{:05d}-of-{:05d}.txt".format(x, N_FILES["test"]) for x in range(N_FILES["test"])],
}
VERSION = datasets.Version("1.0.0")
class NaabConfig(datasets.BuilderConfig):
"""BuilderConfig for naab."""
def __init__(self, *args, **kwargs):
"""BuilderConfig for naab.
Args:
**kwargs: keyword arguments forwarded to super.
"""
super(NaabConfig, self).__init__(*args, **kwargs)
class Naab(datasets.GeneratorBasedBuilder):
"""naab: A ready-to-use plug-and-play corpus in Farsi."""
BUILDER_CONFIGS = [
NaabConfig(
name="all",
version=VERSION,
description=_DESCRIPTION)
]
BUILDER_CONFIG_CLASS = NaabConfig
DEFAULT_CONFIG_NAME = "all"
def _info(self):
features = datasets.Features({
"text": datasets.Value("string"),
})
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=features,
supervised_keys=None,
homepage=_HOMEPAGE,
license=_LICENSE,
citation=_CITATION,
)
def _split_generators(self, dl_manager):
data_urls = {}
for split in ["train", "test"]:
data_urls[split] = _URLS[split]
train_downloaded_files = dl_manager.download(data_urls["train"])
test_downloaded_files = dl_manager.download(data_urls["test"])
return [
datasets.SplitGenerator(
name=datasets.Split.TRAIN,
gen_kwargs={
"filepaths": train_downloaded_files,
"split": "train"
}
),
datasets.SplitGenerator(
name=datasets.Split.TEST,
gen_kwargs={
"filepaths": test_downloaded_files,
"split": "test"
}
),
]
def _generate_examples(self, filepaths, split):
for filepath in filepaths:
with open(filepath, encoding="utf-8") as f:
for key, row in enumerate(f):
if row.strip():
yield key, {"text": row}
else:
yield key, {"text": ""} |