Spatialworld commited on
Commit
2cff6c6
Β·
verified Β·
1 Parent(s): eadecab

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SpatialWorld Benchmark
2
+
3
+ > **Anonymous Repository for NeurIPS 2026 Submission**
4
+
5
+ This is an anonymous dataset repository for peer review purposes. All identifying information has been removed to maintain double-blind review compliance.
6
+
7
+ ---
8
+
9
+ ## Overview
10
+
11
+ **SpatialWorld** is a comprehensive benchmark for evaluating embodied AI agents in complex 3D spatial reasoning and manipulation tasks. The benchmark encompasses diverse virtual environments and task types to assess agents' capabilities in understanding and interacting with physical spaces.
12
+
13
+ ---
14
+
15
+ ## Benchmark Components
16
+
17
+ ### Environments
18
+
19
+ The benchmark includes the following simulation environments:
20
+
21
+ | Environment | Description | Tasks |
22
+ |-------------|-------------|-------|
23
+ | **AI2-THOR** | Indoor household environments | Object manipulation, navigation, and rearrangement tasks |
24
+ | **CARLA** | Autonomous driving simulator | Driving scenarios and vehicle control tasks |
25
+ | **VirtualHome** | Multi-agent household simulator | Multi-step task completion and social interactions |
26
+ | **ProcTHOR** | Procedurally generated homes | Generalization across diverse household layouts |
27
+ | **EmbodiedCity** | Urban environment simulation | City-scale navigation and exploration |
28
+ | **Game** | Puzzle and game environments | Rubik's cube, maze solving, and 3D block puzzles |
29
+
30
+ ### Task Structure
31
+
32
+ Each task in the benchmark contains:
33
+
34
+ - **Task ID**: Unique identifier (e.g., `ai2thor00000`)
35
+ - **Instruction**: Natural language description of the goal
36
+ - **Scene/Environment**: The specific scene configuration
37
+ - **Golden Actions**: Reference action sequence for task completion
38
+ - **Success Conditions**: Formal criteria for task success evaluation
39
+ - **Initial State**: Starting configuration via `init.json`
40
+
41
+ ### Data Format
42
+
43
+ ```
44
+ benchmark/
45
+ β”œβ”€β”€ ai2thor/tasks/{task_id}/
46
+ β”‚ β”œβ”€β”€ task.json # Task definition and success conditions
47
+ β”‚ └── init.json # Initial scene configuration
48
+ β”œβ”€β”€ carla/tasks/{task_id}/
49
+ β”‚ β”œβ”€β”€ task.json
50
+ β”‚ └── init.json
51
+ β”œβ”€β”€ embodiedcity/
52
+ β”‚ └── Datasets/
53
+ β”œβ”€β”€ game/data/
54
+ β”‚ β”œβ”€β”€ rubik_cube/
55
+ β”‚ β”œβ”€β”€ maze3d/
56
+ β”‚ β”œβ”€β”€ maze3d_pro/
57
+ β”‚ └── Block3D/
58
+ β”œβ”€β”€ procthor/
59
+ β”‚ └── tasks/
60
+ └── virtualhome/
61
+ └── tasks/
62
+ ```
63
+