Initial Commit
Browse files- data/{text.en → text-en.json} +0 -0
- data/{text.hi → text-hi.json} +0 -0
- dataset_infos.json +1 -0
- split-test.py +2 -2
data/{text.en → text-en.json}
RENAMED
File without changes
|
data/{text.hi → text-hi.json}
RENAMED
File without changes
|
dataset_infos.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"english": {"description": "This new dataset is designed to solve this great NLP task and is crafted with a lot of care.\n", "citation": "@InProceedings{huggingface:dataset,\ntitle = {A great new dataset},\nauthor={huggingface, Inc.\n},\nyear={2020}\n}\n", "homepage": "", "license": "", "features": {"word": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "split_test", "config_name": "english", "version": {"version_str": "2.1.0", "description": "", "major": 2, "minor": 1, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 37, "num_examples": 3, "dataset_name": "split_test"}}, "download_checksums": {"./data/text.en": {"num_bytes": 59, "checksum": "5894730e125ff10db81277168da755e61a62ebcbc52b2702cfcd84bec708b94b"}}, "download_size": 59, "post_processing_size": null, "dataset_size": 37, "size_in_bytes": 96}, "hindi": {"description": "This new dataset is designed to solve this great NLP task and is crafted with a lot of care.\n", "citation": "@InProceedings{huggingface:dataset,\ntitle = {A great new dataset},\nauthor={huggingface, Inc.\n},\nyear={2020}\n}\n", "homepage": "", "license": "", "features": {"word": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "split_test", "config_name": "hindi", "version": {"version_str": "2.1.0", "description": "", "major": 2, "minor": 1, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 31, "num_examples": 3, "dataset_name": "split_test"}}, "download_checksums": {"./data/text.hi": {"num_bytes": 53, "checksum": "f0cf0f88d8b18fae163c56eedbe13f38aefa84d49d758ec0d72ee06453fca0bb"}}, "download_size": 53, "post_processing_size": null, "dataset_size": 31, "size_in_bytes": 84}}
|
split-test.py
CHANGED
@@ -48,8 +48,8 @@ _LICENSE = ""
|
|
48 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
49 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
50 |
_URLS = {
|
51 |
-
"english": "./data/text.
|
52 |
-
"hindi": "./data/text.
|
53 |
}
|
54 |
|
55 |
_LANGS = {
|
|
|
48 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
49 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
50 |
_URLS = {
|
51 |
+
"english": "./data/text-en.json",
|
52 |
+
"hindi": "./data/text-hi.json"
|
53 |
}
|
54 |
|
55 |
_LANGS = {
|