shahab7899 commited on
Commit
1f3aad2
·
verified ·
1 Parent(s): 0ff7fac

Fix dataset structure: correct schema and features

Browse files
README.md CHANGED
@@ -19,33 +19,40 @@ size_categories:
19
  configs:
20
  - config_name: default
21
  data_files:
22
- - split: Train
23
- path: data/Train-*
24
- - split: Test
25
- path: data/Test-*
 
 
26
  dataset_info:
27
  features:
28
  - name: Question
29
  dtype: string
30
  - name: ID
31
  dtype: string
32
- - name: Image 1
33
  dtype: image
34
- - name: Image 2
35
  dtype: image
36
- - name: Answer 1
37
  dtype: string
38
- - name: Answer 2
 
 
39
  dtype: string
40
  splits:
41
- - name: Train
42
- num_bytes: 411318694.964
43
- num_examples: 1994
44
- - name: Test
45
- num_bytes: 101952951.0
46
- num_examples: 500
47
- download_size: 299622776
48
- dataset_size: 513271645.964
 
 
 
49
  ---
50
  <p align="center">
51
  <img src="banner.png" alt="drawing" width="700" style="float: center;"/>
 
19
  configs:
20
  - config_name: default
21
  data_files:
22
+ - split: easy
23
+ path: data/easy-*
24
+ - split: hard
25
+ path: data/hard-*
26
+ - split: medium
27
+ path: data/medium-*
28
  dataset_info:
29
  features:
30
  - name: Question
31
  dtype: string
32
  - name: ID
33
  dtype: string
34
+ - name: Image_file
35
  dtype: image
36
+ - name: Pseudo_solution_file
37
  dtype: image
38
+ - name: Answer
39
  dtype: string
40
+ - name: Category
41
+ dtype: string
42
+ - name: Difficulty
43
  dtype: string
44
  splits:
45
+ - name: easy
46
+ num_bytes: 6652257.0
47
+ num_examples: 400
48
+ - name: hard
49
+ num_bytes: 5911842.0
50
+ num_examples: 400
51
+ - name: medium
52
+ num_bytes: 6091700.0
53
+ num_examples: 400
54
+ download_size: 10553705
55
+ dataset_size: 18655799.0
56
  ---
57
  <p align="center">
58
  <img src="banner.png" alt="drawing" width="700" style="float: center;"/>
data/easy-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:edca6241a3c94160f16391e445fdf35d46aded9f76d0603b24d98a7d66abe004
3
- size 3947978
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db40aad780ddc550d5216794b1dc7cddc44322e55cc5b2137492ddd1c948be22
3
+ size 3948430
data/hard-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:04af1b8be19804ad034b101f6b55cf771a6cb0b23978f508f00d479faec3a563
3
- size 3209903
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:074819d77e988cb4b9e9690716256b1c01c6c64a0a517f8103c4350721a36ad3
3
+ size 3210355
data/medium-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5ad38015673746c1348f28684e08c7894167851e233a3b88db6b9bcaf8d26546
3
- size 3394468
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:008035a0f33c0f7a0ea5677ba6a05b1f882a5c24780488e7efa681ab3db1db83
3
+ size 3394920
dataset_infos.json CHANGED
@@ -1,52 +1,68 @@
1
  {
2
- "default": {
3
- "description": "Hyperphantasia: A benchmark for mental visualization abilities with puzzles requiring spatial reasoning",
4
- "features": {
5
- "Question": {
6
- "dtype": "string",
7
- "_type": "Value"
8
- },
9
- "ID": {
10
- "dtype": "string",
11
- "_type": "Value"
12
- },
13
- "Image_file": {
14
- "_type": "Image"
15
- },
16
- "Pseudo_solution_file": {
17
- "_type": "Image"
18
- },
19
- "Answer": {
20
- "dtype": "string",
21
- "_type": "Value"
22
- },
23
- "Category": {
24
- "dtype": "string",
25
- "_type": "Value"
26
- },
27
- "Difficulty": {
28
- "dtype": "string",
29
- "_type": "Value"
30
- }
31
- },
32
- "splits": {
33
- "easy": {
34
- "name": "easy",
35
- "num_bytes": 0,
36
- "num_examples": 400
37
- },
38
- "medium": {
39
- "name": "medium",
40
- "num_bytes": 0,
41
- "num_examples": 400
42
- },
43
- "hard": {
44
- "name": "hard",
45
- "num_bytes": 0,
46
- "num_examples": 400
47
- }
48
- },
49
- "download_size": 0,
50
- "dataset_size": 0
51
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  }
 
1
  {
2
+ "default": {
3
+ "description": "",
4
+ "citation": "",
5
+ "homepage": "",
6
+ "license": "",
7
+ "features": {
8
+ "Question": {
9
+ "dtype": "string",
10
+ "_type": "Value"
11
+ },
12
+ "ID": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "Image_file": {
17
+ "_type": "Image"
18
+ },
19
+ "Pseudo_solution_file": {
20
+ "_type": "Image"
21
+ },
22
+ "Answer": {
23
+ "dtype": "string",
24
+ "_type": "Value"
25
+ },
26
+ "Category": {
27
+ "dtype": "string",
28
+ "_type": "Value"
29
+ },
30
+ "Difficulty": {
31
+ "dtype": "string",
32
+ "_type": "Value"
33
+ }
34
+ },
35
+ "builder_name": "parquet",
36
+ "dataset_name": "hyperphantasia",
37
+ "config_name": "default",
38
+ "version": {
39
+ "version_str": "0.0.0",
40
+ "major": 0,
41
+ "minor": 0,
42
+ "patch": 0
43
+ },
44
+ "splits": {
45
+ "easy": {
46
+ "name": "easy",
47
+ "num_bytes": 6652257.0,
48
+ "num_examples": 400,
49
+ "dataset_name": null
50
+ },
51
+ "hard": {
52
+ "name": "hard",
53
+ "num_bytes": 5911842.0,
54
+ "num_examples": 400,
55
+ "dataset_name": null
56
+ },
57
+ "medium": {
58
+ "name": "medium",
59
+ "num_bytes": 6091700.0,
60
+ "num_examples": 400,
61
+ "dataset_name": null
62
+ }
63
+ },
64
+ "download_size": 10553705,
65
+ "dataset_size": 18655799.0,
66
+ "size_in_bytes": 29209504.0
67
+ }
68
  }