Update dataset card with robotics metadata, paper links, and usage instructions
Browse filesHi, I'm Niels from the community science team at Hugging Face.
This PR improves the dataset card for ESARBench by:
- Adding the `robotics` task category and relevant tags to the metadata.
- Linking the research paper, project page, and GitHub repository.
- Providing a descriptive summary of the benchmark's features.
- Including installation and usage instructions to help researchers get started with the evaluation platform.
README.md
CHANGED
|
@@ -1,6 +1,81 @@
|
|
| 1 |
---
|
| 2 |
-
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
license: mit
|
| 5 |
+
pretty_name: ESARBench
|
| 6 |
+
task_categories:
|
| 7 |
+
- robotics
|
| 8 |
+
tags:
|
| 9 |
+
- uav
|
| 10 |
+
- embodied-ai
|
| 11 |
+
- search-and-rescue
|
| 12 |
+
- mllm
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# ESARBench: A Benchmark for Agentic UAV Embodied Search and Rescue
|
| 16 |
+
|
| 17 |
+
[**Project Page**](https://4amgodvzx.github.io/ESAR.github.io) | [**Paper**](https://huggingface.co/papers/2605.01371) | [**GitHub**](https://github.com/4amGodvzx/ESAR)
|
| 18 |
+
|
| 19 |
+
**ESARBench** is a comprehensive benchmark designed to evaluate Multimodal Large Language Model (MLLM) driven UAV agents in highly realistic **Embodied Search and Rescue (ESAR)** scenarios. It requires aerial agents to autonomously explore complex environments, identify rescue clues, and reason about victim locations to execute informed decision-making.
|
| 20 |
+
|
| 21 |
+
## Key Features
|
| 22 |
+
- **High Fidelity**: 4 large-scale environments built with UE5 + AirSim using real-world GIS data.
|
| 23 |
+
- **Realistic Dynamics**: Integrated simulations of weather, lighting, and diverse rescue clues.
|
| 24 |
+
- **Task Diversity**: 600 tasks modeled after real-world rescue cases.
|
| 25 |
+
- **Evaluation**: A robust set of metrics to evaluate spatial memory, aerial adaptation, and search efficiency.
|
| 26 |
+
|
| 27 |
+
## Quick Start
|
| 28 |
+
|
| 29 |
+
### Installation
|
| 30 |
+
|
| 31 |
+
1. Create a Python 3.9 environment using Conda:
|
| 32 |
+
```bash
|
| 33 |
+
conda create -n esar_env python=3.9
|
| 34 |
+
conda activate esar_env
|
| 35 |
+
```
|
| 36 |
+
2. Install the required Python packages:
|
| 37 |
+
```bash
|
| 38 |
+
pip install numpy msgpack-rpc-python pandas scipy dashscope opencv-python scikit-image scikit-fmm ultralytics matplotlib transformers pillow
|
| 39 |
+
```
|
| 40 |
+
3. Clone and install the AirSim-Colosseum client:
|
| 41 |
+
```bash
|
| 42 |
+
git clone https://github.com/CodexLabsLLC/Colosseum.git
|
| 43 |
+
cd Colosseum/PythonClient
|
| 44 |
+
pip install -e . --no-build-isolation
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
### Running the Benchmark
|
| 48 |
+
|
| 49 |
+
The platform scripts load sample tasks by default. To run the benchmark, navigate to the `source` directory and run the platform script corresponding to your OS:
|
| 50 |
+
|
| 51 |
+
- **Linux**
|
| 52 |
+
```bash
|
| 53 |
+
cd source
|
| 54 |
+
python main_platform_linux.py
|
| 55 |
+
```
|
| 56 |
+
- **Windows**
|
| 57 |
+
```bash
|
| 58 |
+
cd source
|
| 59 |
+
python main_platform_win.py
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
### Analyzing Results
|
| 63 |
+
Each task writes a log file to `log/task_<task_id>_log.json`. You can analyze the results using:
|
| 64 |
+
```bash
|
| 65 |
+
cd source
|
| 66 |
+
python result_analysis.py
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
## Citation
|
| 70 |
+
If you use ESARBench in your research, please cite:
|
| 71 |
+
```bibtex
|
| 72 |
+
@article{esarbench2024,
|
| 73 |
+
title={ESARBench: A Benchmark for Agentic UAV Embodied Search and Rescue},
|
| 74 |
+
author={Authors list here},
|
| 75 |
+
journal={arXiv preprint arXiv:2605.01371},
|
| 76 |
+
year={2024}
|
| 77 |
+
}
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
## License
|
| 81 |
+
This project is licensed under the MIT License.
|