corypaik commited on
Commit
cf7be86
1 Parent(s): 9a1490d

feat(default): add description and dataset_infos.json

Browse files
Files changed (2) hide show
  1. dataset_infos.json +1 -0
  2. prost.py +2 -1
dataset_infos.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"default": {"description": "*Physical Reasoning about Objects Through Space and Time* (PROST) is a probing dataset to evaluate the ability of pretrained LMs to understand and reason about the physical world. PROST consists of 18,736 cloze-style multiple choice questions from 14 manually curated templates, covering 10 physical reasoning concepts: direction, mass, height, circumference, stackable, rollable, graspable, breakable, slideable, and bounceable.\n", "citation": "", "homepage": "https://github.com/nala-cub/prost", "license": "Apache 2.0", "features": {"A": {"dtype": "string", "id": null, "_type": "Value"}, "B": {"dtype": "string", "id": null, "_type": "Value"}, "C": {"dtype": "string", "id": null, "_type": "Value"}, "D": {"dtype": "string", "id": null, "_type": "Value"}, "context": {"dtype": "string", "id": null, "_type": "Value"}, "question": {"dtype": "string", "id": null, "_type": "Value"}, "ex_question": {"dtype": "string", "id": null, "_type": "Value"}, "group": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"num_classes": 4, "names": ["A", "B", "C", "D"], "names_file": null, "id": null, "_type": "ClassLabel"}, "name": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "prost", "config_name": "default", "version": {"version_str": "1.0.0", "description": null, "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 5698256, "num_examples": 18736, "dataset_name": "prost"}}, "download_checksums": {"https://huggingface.co/datasets/corypaik/prost/resolve/main/data/default.jsonl": {"num_bytes": 7197063, "checksum": "05d773ae2768047579ea22415fc593199430747027b3df5621e60044fe893bde"}}, "download_size": 7197063, "post_processing_size": null, "dataset_size": 5698256, "size_in_bytes": 12895319}}
prost.py CHANGED
@@ -23,9 +23,10 @@ _CITATION = """\
23
  """
24
 
25
  # TODO: Add description of the dataset here
26
- # You can copy an official description
27
  _DESCRIPTION = """\
 
28
  """
 
29
  _HOMEPAGE = 'https://github.com/nala-cub/prost'
30
  _LICENSE = 'Apache 2.0'
31
 
 
23
  """
24
 
25
  # TODO: Add description of the dataset here
 
26
  _DESCRIPTION = """\
27
+ *Physical Reasoning about Objects Through Space and Time* (PROST) is a probing dataset to evaluate the ability of pretrained LMs to understand and reason about the physical world. PROST consists of 18,736 cloze-style multiple choice questions from 14 manually curated templates, covering 10 physical reasoning concepts: direction, mass, height, circumference, stackable, rollable, graspable, breakable, slideable, and bounceable.
28
  """
29
+
30
  _HOMEPAGE = 'https://github.com/nala-cub/prost'
31
  _LICENSE = 'Apache 2.0'
32