andreaschandra commited on
Commit
4030949
1 Parent(s): bed3db5

update path

Browse files
Files changed (2) hide show
  1. dataset_infos.json +1 -1
  2. google-play-review.py +2 -2
dataset_infos.json CHANGED
@@ -1 +1 @@
1
- {"default": {"description": "This dataset is built as a playground for beginner to make a use case for creating sentiment analysis model.\n", "citation": "", "homepage": "https://github.com/jakartaresearch", "license": "", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "string", "id": null, "_type": "Value"}, "stars": {"dtype": "int8", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "google_play_review", "config_name": "default", "version": {"version_str": "1.0.0", "description": null, "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 480786, "num_examples": 7028, "dataset_name": "google_play_review"}, "validation": {"name": "validation", "num_bytes": 216876, "num_examples": 3012, "dataset_name": "google_play_review"}}, "download_checksums": {"https://raw.githubusercontent.com/jakartaresearch/hf-datasets/main/google-play-review/google-play-review/train.csv": {"num_bytes": 448923, "checksum": "9482d867937f49aed59d5b7b8a495e5b46c11d763fa977580ba4421742b0aed7"}, "https://raw.githubusercontent.com/jakartaresearch/hf-datasets/main/google-play-review/google-play-review/validation.csv": {"num_bytes": 203356, "checksum": "06a84a0faf920a850b5a7e0341f9b697ba6164761e00c71338a92120fd7c96dc"}}, "download_size": 652279, "post_processing_size": null, "dataset_size": 697662, "size_in_bytes": 1349941}}
 
1
+ {"default": {"description": "This dataset is built as a playground for beginner to make a use case for creating sentiment analysis model.\n", "citation": "", "homepage": "https://github.com/jakartaresearch", "license": "", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "string", "id": null, "_type": "Value"}, "stars": {"dtype": "int8", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "google_play_review", "config_name": "default", "version": {"version_str": "1.0.0", "description": null, "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 480786, "num_examples": 7028, "dataset_name": "google_play_review"}, "validation": {"name": "validation", "num_bytes": 216876, "num_examples": 3012, "dataset_name": "google_play_review"}}, "download_checksums": {"https://media.githubusercontent.com/media/jakartaresearch/hf-datasets/main/google-play-review/google-play-review/train.csv": {"num_bytes": 455952, "checksum": "640c1096168259bea951919369011827aeee0b873d386dd62d5c52c62c9c34f5"}, "https://media.githubusercontent.com/media/jakartaresearch/hf-datasets/main/google-play-review/google-play-review/validation.csv": {"num_bytes": 206369, "checksum": "a6f7a94d76dc2375496e64b3cd1fc0e6d857c137984bcf8de321446d8d482a68"}}, "download_size": 662321, "post_processing_size": null, "dataset_size": 697662, "size_in_bytes": 1359983}}
google-play-review.py CHANGED
@@ -30,8 +30,8 @@ _HOMEPAGE = "https://github.com/jakartaresearch"
30
  # TODO: Add link to the official dataset URLs here
31
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
32
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
33
- _TRAIN_URL = "https://raw.githubusercontent.com/jakartaresearch/hf-datasets/main/google-play-review/google-play-review/train.csv"
34
- _VAL_URL = "https://raw.githubusercontent.com/jakartaresearch/hf-datasets/main/google-play-review/google-play-review/validation.csv"
35
 
36
 
37
  # TODO: Name of the dataset usually match the script name with CamelCase instead of snake_case
 
30
  # TODO: Add link to the official dataset URLs here
31
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
32
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
33
+ _TRAIN_URL = "https://media.githubusercontent.com/media/jakartaresearch/hf-datasets/main/google-play-review/google-play-review/train.csv"
34
+ _VAL_URL = "https://media.githubusercontent.com/media/jakartaresearch/hf-datasets/main/google-play-review/google-play-review/validation.csv"
35
 
36
 
37
  # TODO: Name of the dataset usually match the script name with CamelCase instead of snake_case