hitsmy commited on
Commit
e692184
·
verified ·
1 Parent(s): 117be19

Add README

Browse files
Files changed (1) hide show
  1. README.md +84 -52
README.md CHANGED
@@ -1,52 +1,84 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: idx
5
- dtype: string
6
- - name: original_id
7
- dtype: string
8
- - name: image
9
- dtype: image
10
- - name: text
11
- dtype: string
12
- - name: answer
13
- dtype: string
14
- - name: task_type
15
- dtype: string
16
- - name: split
17
- dtype: string
18
- - name: size
19
- dtype: int32
20
- - name: level
21
- dtype: int32
22
- - name: gym_map
23
- dtype: string
24
- - name: path_length
25
- dtype: int32
26
- - name: path
27
- dtype: string
28
- - name: start_coords
29
- dtype: string
30
- - name: goal_coords
31
- dtype: string
32
- - name: obstacle_coords
33
- dtype: string
34
- - name: astar_path
35
- dtype: string
36
- splits:
37
- - name: navigation_test
38
- num_bytes: 7180707.0
39
- num_examples: 600
40
- - name: verify_test
41
- num_bytes: 5187972.0
42
- num_examples: 500
43
- download_size: 11307853
44
- dataset_size: 12368679.0
45
- configs:
46
- - config_name: default
47
- data_files:
48
- - split: navigation_test
49
- path: data/navigation_test-*
50
- - split: verify_test
51
- path: data/verify_test-*
52
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Visual Spatial Planning (VSP) Dataset
2
+
3
+ ## Dataset Description
4
+
5
+ This dataset contains visual maze navigation and path verification tasks from the Visual Spatial Planning benchmark.
6
+
7
+ ### Dataset Summary
8
+
9
+ - **Total samples**: 1100
10
+ - **Tasks**: Path Navigation (task-main) and Path Verification (task4)
11
+ - **Splits**:
12
+ - `navigation_test`: 600 samples
13
+ - `verify_test`: 500 samples
14
+
15
+ ### Task Types
16
+
17
+ 1. **Path Verification (task4)**: Given a maze image and an action sequence, determine if the path is safe (avoids holes and reaches the goal).
18
+ 2. **Path Navigation (task-main)**: Given a maze image, generate an optimal action sequence from start to goal while avoiding holes.
19
+
20
+ ### Data Fields
21
+
22
+ Common fields:
23
+ - `idx`: Unique identifier
24
+ - `original_id`: Original data ID
25
+ - `image`: RGB image of the maze
26
+ - `text`: Task instruction and prompt
27
+ - `answer`: Ground truth answer
28
+ - `task_type`: Type of task (verify/navigation)
29
+ - `split`: Data split (test)
30
+ - `size`: Maze size (grid dimension)
31
+ - `level`: Difficulty level
32
+ - `gym_map`: Gym environment map representation (JSON string)
33
+
34
+ Path Verification specific fields:
35
+ - `path_length`: Length of the action sequence
36
+ - `path`: Action sequence string
37
+
38
+ Path Navigation specific fields:
39
+ - `start_coords`: Starting coordinates (JSON string)
40
+ - `goal_coords`: Goal coordinates (JSON string)
41
+ - `obstacle_coords`: Obstacle coordinates (JSON string)
42
+ - `astar_path`: A* algorithm path (if available)
43
+
44
+ ### Actions
45
+
46
+ - `L`: Move left
47
+ - `R`: Move right
48
+ - `U`: Move up
49
+ - `D`: Move down
50
+
51
+ ### Maze Elements
52
+
53
+ - `S`: Start position
54
+ - `G`: Goal position
55
+ - `F`: Frozen (safe) tile
56
+ - `H`: Hole (unsafe)
57
+
58
+ ## Usage
59
+
60
+ ```python
61
+ from datasets import load_dataset
62
+
63
+ # Load specific split
64
+ dataset = load_dataset("hitsmy/AdaEval-VSPO", split="navigation_test")
65
+
66
+ # Access an example
67
+ example = dataset[0]
68
+ image = example['image']
69
+ prompt = example['text']
70
+ answer = example['answer']
71
+
72
+ ## Citation
73
+
74
+ If you use this dataset, please cite:
75
+
76
+ @dataset{vsp_dataset,
77
+ title={Visual Spatial Planning Dataset},
78
+ author={VSP Team},
79
+ year={2024}
80
+ }
81
+
82
+ ##License
83
+
84
+ Apache 2.0