thanhqt2002 commited on
Commit
0116358
1 Parent(s): edd9309

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +98 -3
README.md CHANGED
@@ -1,3 +1,98 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ pretty_name: Spatial Reasoning Tasks
4
+ dataset_info:
5
+ - config_name: 1.0.0
6
+ features:
7
+ - name: task_id
8
+ dtype: string
9
+ - name: task_query
10
+ dtype: string
11
+ - name: task_label
12
+ dtype: bool
13
+ - name: task_constraint
14
+ dtype: list
15
+ - name: objects
16
+ dtype: list
17
+ - name: related_task_id
18
+ dtype: string
19
+ - name: image_url
20
+ dtype: string
21
+ - name: scene_id
22
+ dtype: string
23
+ splits:
24
+ - name: qa
25
+ num_bytes: <number_of_bytes>
26
+ num_examples: <number_of_examples>
27
+ download_size: <download_size>
28
+ dataset_size: <dataset_size>
29
+ configs:
30
+ - config_name: 1.0.0
31
+ data_files:
32
+ - split: qa
33
+ path: data/all.json
34
+ train-eval-index:
35
+ - config: 1.0.0
36
+ splits:
37
+ eval_split: qa
38
+ col_mapping:
39
+ task_query: text
40
+ task_label: label
41
+ language:
42
+ - en
43
+ task_categories:
44
+ - visual-question-answering
45
+ tags:
46
+ - spatial reasoning
47
+ - embodied AI
48
+ size_categories:
49
+ - 1K<n<10K
50
+ ---
51
+
52
+ # Embodied Spatial Reasoning Tasks
53
+
54
+ ## Dataset Description
55
+
56
+ This dataset is part of the embodied-spatial-reasoning project, where the agent has to actively explore the environment to determine if certain spatial relationships hold true. The tasks involve spatial reasoning with various objects and scenes. Each task includes a query about the spatial relationships between objects within a scene, which the agent must verify through exploration.
57
+
58
+ ## Dataset Structure
59
+
60
+ The dataset is organized so that each entry represents a single task associated with a specific scene.
61
+
62
+ ### Features
63
+
64
+ - **task_id**: (string) Unique identifier for each task.
65
+ - **task_query**: (string) A query describing the spatial relationship to be verified (e.g., "The object sofa is to the left of wardrobe.").
66
+ - **task_label**: (bool) Indicates whether the spatial relationship described in the query is correct (True) or not (False).
67
+ - **task_constraint**: (list) A list of constraints associated with the task, specifying the objects and their spatial relationship.
68
+ - **object_list**: (list of strings) List of objects involved in the constraint.
69
+ - **constraint_name**: (string) Name of the spatial relationship (e.g., "left").
70
+ - **objects**: (list) List of objects involved in the scene.
71
+ - **related_task_id**: (string) Identifier of a related task, if any.
72
+ - **image_url**: (string) URL of the image associated with the task.
73
+ - **scene_id**: (string) Identifier for the scene where the task occurs.
74
+
75
+ ### Example Entry
76
+
77
+ ```json
78
+ {
79
+ "scene_id": "8cff7aca-1324-48fa-bf7d-ca913bdd6d2d",
80
+ "task_id": "579c553b-21dd-4a44-bcef-1da9e5fada9f",
81
+ "task_query": "The object sofa is to the left of wardrobe.",
82
+ "task_label": true,
83
+ "task_constraint": [
84
+ {
85
+ "object_list": [
86
+ "wardrobe",
87
+ "sofa"
88
+ ],
89
+ "constraint_name": "left"
90
+ }
91
+ ],
92
+ "objects": [
93
+ "wardrobe",
94
+ "sofa"
95
+ ],
96
+ "related_task_id": "718c876a-a8d1-4297-b552-24ce1f136ed4",
97
+ "image_url": "https://embodied-spatial-reasoning.storage.googleapis.com/images/left/True/579c553b-21dd-4a44-bcef-1da9e5fada9f.png"
98
+ }