Upload README.md with huggingface_hub
Browse files
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 |
+
|