Datasets:
Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: "SanD-Planner — dataset_avoid (obstacle-avoidance subset)"
|
| 3 |
+
tags:
|
| 4 |
+
- robotics
|
| 5 |
+
- navigation
|
| 6 |
+
- trajectory-prediction
|
| 7 |
+
- depth
|
| 8 |
+
- diffusion-policy
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# SanD-Planner training data — `dataset_avoid`
|
| 12 |
+
|
| 13 |
+
The **`dataset_avoid`** subset (obstacle-avoidance runs) used to train the
|
| 14 |
+
[**SanD-Planner**](https://github.com/WangJinCheng1998/sandplanner) local trajectory
|
| 15 |
+
planner.
|
| 16 |
+
|
| 17 |
+
- Collected in a **custom Gazebo simulation environment** (self-built).
|
| 18 |
+
- This is **one subset of a larger training set** — only part of the full dataset is released here.
|
| 19 |
+
|
| 20 |
+
## Contents
|
| 21 |
+
|
| 22 |
+
A single archive `dataset_avoid.zip` (~14 GB) that extracts to:
|
| 23 |
+
|
| 24 |
+
```
|
| 25 |
+
dataset_avoid/
|
| 26 |
+
└── run_XXXX/ # 152 runs, variable length
|
| 27 |
+
├── traj_xyz.npy # (T, 3) trajectory positions (x, y, z), metres
|
| 28 |
+
├── traj_yaw.npy # (T,) heading (yaw)
|
| 29 |
+
├── traj_pitch.npy # (T,) pitch
|
| 30 |
+
└── depth/
|
| 31 |
+
└── depth_NNNN.png # per-frame depth images (uint16, mm)
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
## Usage
|
| 35 |
+
|
| 36 |
+
```bash
|
| 37 |
+
hf download WJCUCL/sandplanner-dataset-avoid dataset_avoid.zip --repo-type dataset --local-dir .
|
| 38 |
+
unzip dataset_avoid.zip -d dataset/ # -> dataset/dataset_avoid/run_XXXX/
|
| 39 |
+
DATASET_ROOT=dataset bash run_train.sh # run inside the SanD-Planner repo
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
See the [SanD-Planner repository](https://github.com/WangJinCheng1998/sandplanner) for
|
| 43 |
+
the training and inference code.
|
| 44 |
+
|
| 45 |
+
## Citation
|
| 46 |
+
|
| 47 |
+
```bibtex
|
| 48 |
+
@article{wang2026sand,
|
| 49 |
+
title = {SanD-Planner: Sample-Efficient Diffusion Planner in B-Spline Space for Robust Local Navigation},
|
| 50 |
+
author = {Wang, Jincheng and Bao, Lingfan and Yang, Tong and Plasencia, Diego Martinez and Jiao, Jianhao and Kanoulas, Dimitrios},
|
| 51 |
+
journal = {arXiv preprint arXiv:2602.00923},
|
| 52 |
+
year = {2026}
|
| 53 |
+
}
|
| 54 |
+
```
|