Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -6,9 +6,9 @@ dataset_info:
|
|
| 6 |
splits:
|
| 7 |
- name: qa
|
| 8 |
num_bytes: <number_of_bytes>
|
| 9 |
-
num_examples:
|
| 10 |
download_size: <download_size>
|
| 11 |
-
dataset_size:
|
| 12 |
configs:
|
| 13 |
- config_name: 1.0.0
|
| 14 |
data_files:
|
|
@@ -30,15 +30,6 @@ tags:
|
|
| 30 |
- embodied AI
|
| 31 |
size_categories:
|
| 32 |
- 1K<n<10K
|
| 33 |
-
column_order:
|
| 34 |
-
- task_query
|
| 35 |
-
- task_label
|
| 36 |
-
- task_constraint
|
| 37 |
-
- image_url
|
| 38 |
-
- task_id
|
| 39 |
-
- objects
|
| 40 |
-
- related_task_id
|
| 41 |
-
- scene_id
|
| 42 |
---
|
| 43 |
|
| 44 |
|
|
@@ -55,37 +46,27 @@ The dataset is organized so that each entry represents a single task associated
|
|
| 55 |
### Features
|
| 56 |
|
| 57 |
- **task_id**: (string) Unique identifier for each task.
|
| 58 |
-
- **
|
| 59 |
-
- **
|
| 60 |
-
- **
|
| 61 |
-
|
| 62 |
-
- **constraint_name**: (string) Name of the spatial relationship (e.g., "left").
|
| 63 |
- **objects**: (list) List of objects involved in the scene.
|
| 64 |
- **related_task_id**: (string) Identifier of a related task, if any.
|
| 65 |
-
- **image_url**: (string) URL of the image associated with the task.
|
| 66 |
- **scene_id**: (string) Identifier for the scene where the task occurs.
|
| 67 |
|
| 68 |
### Example Entry
|
| 69 |
|
| 70 |
```json
|
| 71 |
{
|
| 72 |
-
"
|
| 73 |
-
"
|
| 74 |
-
"
|
| 75 |
-
"
|
| 76 |
-
"
|
| 77 |
-
{
|
| 78 |
-
"object_list": [
|
| 79 |
-
"wardrobe",
|
| 80 |
-
"sofa"
|
| 81 |
-
],
|
| 82 |
-
"constraint_name": "left"
|
| 83 |
-
}
|
| 84 |
-
],
|
| 85 |
"objects": [
|
| 86 |
"wardrobe",
|
| 87 |
"sofa"
|
| 88 |
],
|
| 89 |
-
"related_task_id": "
|
| 90 |
-
"
|
| 91 |
}
|
|
|
|
| 6 |
splits:
|
| 7 |
- name: qa
|
| 8 |
num_bytes: <number_of_bytes>
|
| 9 |
+
num_examples: 6000
|
| 10 |
download_size: <download_size>
|
| 11 |
+
dataset_size: 6000
|
| 12 |
configs:
|
| 13 |
- config_name: 1.0.0
|
| 14 |
data_files:
|
|
|
|
| 30 |
- embodied AI
|
| 31 |
size_categories:
|
| 32 |
- 1K<n<10K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
---
|
| 34 |
|
| 35 |
|
|
|
|
| 46 |
### Features
|
| 47 |
|
| 48 |
- **task_id**: (string) Unique identifier for each task.
|
| 49 |
+
- **query**: (string) A query describing the spatial relationship to be verified (e.g., "The object sofa is to the left of wardrobe.").
|
| 50 |
+
- **label**: (bool) Indicates whether the spatial relationship described in the query is correct (True) or not (False).
|
| 51 |
+
- **constraint_name**: (string) Name of the spatial relationship (e.g., "left").
|
| 52 |
+
- **image_url**: (string) URL of the image associated with the task.
|
|
|
|
| 53 |
- **objects**: (list) List of objects involved in the scene.
|
| 54 |
- **related_task_id**: (string) Identifier of a related task, if any.
|
|
|
|
| 55 |
- **scene_id**: (string) Identifier for the scene where the task occurs.
|
| 56 |
|
| 57 |
### Example Entry
|
| 58 |
|
| 59 |
```json
|
| 60 |
{
|
| 61 |
+
"query": "The object sofa is to the left of wardrobe.",
|
| 62 |
+
"label": false,
|
| 63 |
+
"constraint_name": "left",
|
| 64 |
+
"image_url": "https://embodied-spatial-reasoning.storage.googleapis.com/images/left/False/718c876a-a8d1-4297-b552-24ce1f136ed4.png",
|
| 65 |
+
"task_id": "718c876a-a8d1-4297-b552-24ce1f136ed4",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
"objects": [
|
| 67 |
"wardrobe",
|
| 68 |
"sofa"
|
| 69 |
],
|
| 70 |
+
"related_task_id": "579c553b-21dd-4a44-bcef-1da9e5fada9f",
|
| 71 |
+
"scene_id": "83ce1d71-506e-43aa-8fda-13911afa6e44"
|
| 72 |
}
|