| """resh.edu.ru lessons dataset""" |
|
|
|
|
| import json |
|
|
| import datasets |
|
|
| _DESCRIPTION = """\ |
| This is a dataset of lessons and tests scraped from resh.edu.ru |
| """ |
|
|
| _HOMEPAGE = "https://huggingface.co/datasets/its5Q/resh-edu" |
|
|
| _LICENSE = "cc0-1.0" |
|
|
| _URLS = [ |
| "https://huggingface.co/datasets/its5Q/resh-edu/resolve/main/raw.jsonl.gz" |
| ] |
|
|
|
|
| class ReshEdu(datasets.GeneratorBasedBuilder): |
| VERSION = datasets.Version("0.1.0") |
|
|
| def _info(self): |
| return datasets.DatasetInfo( |
| description=_DESCRIPTION, |
| homepage=_HOMEPAGE, |
| license=_LICENSE |
| ) |
|
|
| def _split_generators(self, dl_manager): |
| data_dir = dl_manager.download_and_extract(_URLS) |
| return [ |
| datasets.SplitGenerator( |
| name=datasets.Split.TRAIN, |
| gen_kwargs={ |
| "filepath": data_dir[0], |
| "split": "train", |
| }, |
| ) |
| ] |
|
|
| def _generate_examples(self, filepath, split): |
| with open(filepath, 'r', encoding="utf-8") as f: |
| for i, line in enumerate(f): |
| data = json.loads(line) |
| yield i, data |
|
|
|
|