Add dataset card with metadata, benchmark overview, and sample usage
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- embodied-ai
|
| 7 |
+
- visual-language-navigation
|
| 8 |
+
- 3dgs
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# ABotN-Bench
|
| 12 |
+
|
| 13 |
+
[](https://amap-cvlab.github.io/ABot-Navigation/ABot-N1/)
|
| 14 |
+
[](https://arxiv.org/abs/2607.10383)
|
| 15 |
+
[](https://github.com/amap-cvlab/ABot-Navigation)
|
| 16 |
+
|
| 17 |
+
ABotN-Bench is a benchmark suite built on a high-fidelity 3D Gaussian Splatting (3DGS) reconstruction stack to advance the evaluation of closed-loop, social-rule-aware visual navigation in real-world indoor and outdoor environments. This benchmark was introduced in the paper [ABot-N1: Toward a General Visual Language Navigation Foundation Model](https://arxiv.org/abs/2607.10383).
|
| 18 |
+
|
| 19 |
+

|
| 20 |
+
|
| 21 |
+
## Dataset Summary
|
| 22 |
+
|
| 23 |
+
The benchmark consists of three complementary datasets:
|
| 24 |
+
|
| 25 |
+
| Dataset | Task | Goal | Scenes | Episodes |
|
| 26 |
+
|:----------|:-----|:-----|:-------|:---------|
|
| 27 |
+
| **ABotN-PointBench** | Point-Goal | Navigate to (x, y) coordinates | 31 real-world 3DGS scenes (16 indoor + 15 outdoor) | 465 |
|
| 28 |
+
| **ABotN-POIBench** | POI-Goal | Navigate to a named POI entrance | 11 commercial areas, 126k m² | 163 POIs |
|
| 29 |
+
| **Short-Horizon OVON** | Object-Goal | Find and approach a target object category | 36 HM3D scenes (OVON Val-Unseen) | 2,443 |
|
| 30 |
+
|
| 31 |
+
## Standard Agent Interface
|
| 32 |
+
|
| 33 |
+
To evaluate your navigation model on these benchmarks, you can implement the standard agent interface from the `abotn-bench` package:
|
| 34 |
+
|
| 35 |
+
```python
|
| 36 |
+
from abotn_evaluator.interface.point_goal import BasePointGoalAgent, Observation, WaypointPrediction
|
| 37 |
+
|
| 38 |
+
class YourAgent(BasePointGoalAgent):
|
| 39 |
+
def reset(self):
|
| 40 |
+
pass
|
| 41 |
+
|
| 42 |
+
def predict(self, observation: Observation) -> WaypointPrediction:
|
| 43 |
+
# observation.images: Dict[str, ndarray] — multi-view RGB (left/front/right)
|
| 44 |
+
# observation.target_position: ndarray — [front, left] in metres
|
| 45 |
+
# observation.distance_to_goal: float
|
| 46 |
+
return WaypointPrediction(waypoint=..., arrive=...)
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
## Citation
|
| 50 |
+
|
| 51 |
+
If you use this dataset or benchmark in your research, please cite:
|
| 52 |
+
|
| 53 |
+
```bibtex
|
| 54 |
+
@misc{gong2026abotn1,
|
| 55 |
+
title={ABot-N1: Toward a General Visual Language Navigation Foundation Model},
|
| 56 |
+
author={Ruiyan Gong and Yingnan Guo and Junjun Hu and Jintao Kong and Xiaoxu Leng and Tianlun Li and Weize Li and Fei Liu and Zhicheng Liu and Jia Lu and Minghua Luo and Chenlin Ming and Yanfen Shen and Jiyue Tao and Zhengbo Wang and Mingyang Yin and Minqi Gu and Zihao Guan and Wei Guo and Guoqing Liu and Huachong Pang and Menglin Yang and Zeqian Ye and Xiaoxiao Geng and Zhining Gu and Honglin Han and Di Jing and Hongyu Pan and Mingchao Sun and Kuan Yang and Jianfang Zhang and Yanghong Chen and Ye He and Wei Mei and Jiahao Shi and Xiangpo Yang and Yanqing Zhu and Zedong Chu and Xiaolong Wu and Mu Xu},
|
| 57 |
+
year={2026},
|
| 58 |
+
eprint={2607.10383},
|
| 59 |
+
archivePrefix={arXiv},
|
| 60 |
+
primaryClass={cs.CV},
|
| 61 |
+
url={https://arxiv.org/abs/2607.10383},
|
| 62 |
+
}
|
| 63 |
+
```
|