Datasets:

Languages:
English
ArXiv:
License:
OpenDriveLab-org commited on
Commit
4683f06
·
verified ·
1 Parent(s): a0cde0d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -44
README.md CHANGED
@@ -82,15 +82,19 @@ After downloading the **nuPlan** and **OpenScene** raw datasets, set up the foll
82
  ```bash
83
  data/raw/
84
  ├── nuplan/ # nuPlan raw dataset
85
- ── maps/ # HD maps (required by all modules)
86
- ├── us-nv-las-vegas-strip/
87
- │ ├── us-ma-boston/
88
- │ ├── us-pa-pittsburgh-hazelwood/
89
- ── sg-one-north/
90
- │ ├── sensor_blobs/ # Camera images and LiDAR
91
- │ └── splits/ # Train/val/test splits
 
 
 
 
92
 
93
- └── openscene-v1.1/ # OpenScene dataset (based on nuPlan)
94
  ├── sensor_blobs/
95
  │ ├── trainval/ # Training sensor data
96
  │ └── test/ # Test sensor data
@@ -143,10 +147,12 @@ Data for **closed-loop simulation**:
143
 
144
  ```bash
145
  data/sim_engine/
146
- ├── assets/ # Simulation scene assets (need extraction)
147
- │ ├── navtest/ # navtest scene assets (10 parts)
148
- │ ├── navtrain/ # navtrain scene assets (82 parts)
149
- │ └── navtest_failures/ # navtest rare logs scene assets
 
 
150
 
151
  └── scenarios/ # Scenario configurations
152
  ├── original/ # Original logged scenarios
@@ -155,44 +161,14 @@ data/sim_engine/
155
  │ ├── navtrain_ep_per1/
156
  │ ├── navtrain_failures_per1/
157
  │ └── navtrain_hydramdp_failures/
 
158
  └── augmented/ # Augmented scenarios (from BWM)
159
  ├── navtrain_50pct_collision/
160
  ├── navtrain_50pct_ep_1pct/
161
  └── navtrain_50pct_offroad/
162
- ```
163
-
164
- **⚠️ Important: Scene Asset Extraction**
165
-
166
- Scene assets in the `assets/` directory are stored as split archives and must be extracted before use:
167
-
168
- ```bash
169
- cd data/sim_engine/assets
170
 
171
- # Extract navtest scene assets (10 parts)
172
- cd navtest
173
- cat navtest.tar.gz.part* > navtest.tar.gz
174
- tar -xzf navtest.tar.gz --strip-components=1 # Remove top-level directory from archive
175
- rm navtest.tar.gz # Optional: remove merged archive to save space
176
-
177
- # Extract navtrain scene assets (82 parts)
178
- cd ../navtrain
179
- cat navtrain.tar.gz.part* > navtrain.tar.gz
180
- tar -xzf navtrain.tar.gz --strip-components=1
181
- rm navtrain.tar.gz
182
-
183
- # Extract navtest_failures scene assets
184
- cd ../navtest_failures
185
- cat navtest_failures.tar.gz.part* > navtest_failures.tar.gz
186
- tar -xzf navtest_failures.tar.gz --strip-components=1
187
- rm navtest_failures.tar.gz
188
-
189
- cd ../../.. # Return to WorldEngine root
190
  ```
191
 
192
- 💡 **Tips**:
193
- - The `--strip-components=1` parameter ensures extraction to the current directory, avoiding nested structures like `navtest/navtest/`
194
- - Extracted scene assets contain all files needed for 3D Gaussian Splatting (3DGS) rendering; each scene is approximately several hundred MB
195
-
196
  </details>
197
 
198
  ---
@@ -229,7 +205,7 @@ Follow these steps to set up the dataset:
229
  | Step | Action | Description |
230
  |:----:|--------|-------------|
231
  | **1** | Download dataset | Use Hugging Face Hub or Git Clone |
232
- | **2** | Extract scene assets | Extract split archives in `data/sim_engine/assets/` ([see instructions](#3️⃣-simengine-data-datasim_engine)) |
233
  | **3** | Set environment variables | Configure `WORLDENGINE_ROOT` and related paths |
234
  | **4** | Create symlinks | Link raw datasets (if needed) |
235
  | **5** | Verify installation | Run the quick test script |
@@ -314,6 +290,7 @@ If you use the scenario data generated by Behavior World Model (BWM), please als
314
  year={2025}
315
  }
316
  ```
 
317
  ```bibtex
318
  @article{li2025optimization,
319
  title={Optimization-Guided Diffusion for Interactive Scene Generation},
@@ -323,6 +300,20 @@ If you use the scenario data generated by Behavior World Model (BWM), please als
323
  }
324
  ```
325
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  ---
327
 
328
  ## 📄 License
 
82
  ```bash
83
  data/raw/
84
  ├── nuplan/ # nuPlan raw dataset
85
+ ── dataset/
86
+ ├── maps/ # HD maps (required for all modules)
87
+ │ ├── nuplan-maps-v1.0.json
88
+ │ ├── us-nv-las-vegas-strip/
89
+ ── us-ma-boston/
90
+ ├── us-pa-pittsburgh-hazelwood/
91
+ └── sg-one-north/
92
+ │ └── nuplan-v1.1/
93
+ │ ├── sensor_blobs/ # Camera images and LiDAR
94
+ │ └── splits/ # Train/val/test splits
95
+
96
 
97
+ └── openscene-v1.1/ # OpenScene dataset (nuPlan-based)
98
  ├── sensor_blobs/
99
  │ ├── trainval/ # Training sensor data
100
  │ └── test/ # Test sensor data
 
147
 
148
  ```bash
149
  data/sim_engine/
150
+ ├── assets/ # Scene assets for simulation
151
+ │ ├── navtest
152
+ ├── assets
153
+ └── configs
154
+ │ ├── navtrain/
155
+ │ └── navtest_failures/
156
 
157
  └── scenarios/ # Scenario configurations
158
  ├── original/ # Original logged scenarios
 
161
  │ ├── navtrain_ep_per1/
162
  │ ├── navtrain_failures_per1/
163
  │ └── navtrain_hydramdp_failures/
164
+
165
  └── augmented/ # Augmented scenarios (from BWM)
166
  ├── navtrain_50pct_collision/
167
  ├── navtrain_50pct_ep_1pct/
168
  └── navtrain_50pct_offroad/
 
 
 
 
 
 
 
 
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  ```
171
 
 
 
 
 
172
  </details>
173
 
174
  ---
 
205
  | Step | Action | Description |
206
  |:----:|--------|-------------|
207
  | **1** | Download dataset | Use Hugging Face Hub or Git Clone |
208
+ | **2** | Extract scene assets | Extract split archives in `data/sim_engine/assets/` |
209
  | **3** | Set environment variables | Configure `WORLDENGINE_ROOT` and related paths |
210
  | **4** | Create symlinks | Link raw datasets (if needed) |
211
  | **5** | Verify installation | Run the quick test script |
 
290
  year={2025}
291
  }
292
  ```
293
+
294
  ```bibtex
295
  @article{li2025optimization,
296
  title={Optimization-Guided Diffusion for Interactive Scene Generation},
 
300
  }
301
  ```
302
 
303
+ If you find AlgEngine well, please cite as well:
304
+ ```bibtex
305
+ @ARTICLE{11353028,
306
+ author={Liu, Haochen and Li, Tianyu and Yang, Haohan and Chen, Li and Wang, Caojun and Guo, Ke and Tian, Haochen and Li, Hongchen and Li, Hongyang and Lv, Chen},
307
+ journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
308
+ title={Reinforced Refinement With Self-Aware Expansion for End-to-End Autonomous Driving},
309
+ year={2026},
310
+ volume={48},
311
+ number={5},
312
+ pages={5774-5792},
313
+ keywords={Adaptation models;Self-aware;Autonomous vehicles;Pipelines;Planning;Training;Reinforcement learning;Uncertainty;Data models;Safety;End-to-end autonomous driving;reinforced finetuning;imitation learning;motion planning},
314
+ doi={10.1109/TPAMI.2026.3653866}}
315
+ ```
316
+
317
  ---
318
 
319
  ## 📄 License