Add robotics task category and improve dataset card
Browse filesHi! I'm Niels, part of the Hugging Face community science team. I've updated the dataset card to include the `robotics` task category in the metadata, as well as links to the paper, code repository, and project page. I've also added evaluation instructions from the GitHub README to provide sample usage for researchers.
README.md
CHANGED
|
@@ -1,14 +1,50 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
| 4 |
<h2 align="center">
|
| 5 |
<b>Explore with Long-term Memory: A Benchmark and Multimodal LLM-based Reinforcement Learning Framework for Embodied Exploration</b>
|
| 6 |
|
| 7 |
<b><i> CVPR 2026</i></b>
|
| 8 |
-
[<a href="https://arxiv.org/abs/2601.10744">arXiv</a>]
|
| 9 |
</h2>
|
| 10 |
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
- `lmee_bench_sub`: Includes 58 tasks.
|
| 13 |
- `lmee_bench`: Includes the full 166 tasks.
|
| 14 |
-
- `task_test`: Trajectory data test set.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
---
|
| 6 |
+
|
| 7 |
<h2 align="center">
|
| 8 |
<b>Explore with Long-term Memory: A Benchmark and Multimodal LLM-based Reinforcement Learning Framework for Embodied Exploration</b>
|
| 9 |
|
| 10 |
<b><i> CVPR 2026</i></b>
|
|
|
|
| 11 |
</h2>
|
| 12 |
|
| 13 |
+
[Paper](https://arxiv.org/abs/2601.10744) | [Project Page](https://wangsen99.github.io/papers/lmee/) | [GitHub](https://github.com/wangsen99/LMEE)
|
| 14 |
+
|
| 15 |
+
LMEE-Bench is a benchmark for **Long-term Memory Embodied Exploration (LMEE)**. It is designed to evaluate an agent's exploratory cognition and decision-making behaviors by incorporating multi-goal navigation and memory-based question answering tasks.
|
| 16 |
+
|
| 17 |
+
## Dataset Structure
|
| 18 |
+
The benchmark consists of the following components:
|
| 19 |
- `lmee_bench_sub`: Includes 58 tasks.
|
| 20 |
- `lmee_bench`: Includes the full 166 tasks.
|
| 21 |
+
- `task_test`: Trajectory data test set.
|
| 22 |
+
|
| 23 |
+
## Sample Usage (Evaluation)
|
| 24 |
+
|
| 25 |
+
To evaluate a model on LMEE-Bench, you can follow the instructions provided in the [official repository](https://github.com/wangsen99/LMEE).
|
| 26 |
+
|
| 27 |
+
### 1. Reasoning
|
| 28 |
+
Specify the paths in the configuration file `cfg/eval_lmee_bench.yaml` and execute the following command:
|
| 29 |
+
|
| 30 |
+
```bash
|
| 31 |
+
python run_lmee.py -cf cfg/eval_lmee_bench.yaml --answer_type open
|
| 32 |
+
```
|
| 33 |
+
- **answer_type**: Choose between `open` and `choice`.
|
| 34 |
+
|
| 35 |
+
### 2. Evaluation
|
| 36 |
+
After running the reasoning script, you will get a results file (e.g., `lmee_answer.json`). Use the following command to evaluate the question-answering performance:
|
| 37 |
+
|
| 38 |
+
```bash
|
| 39 |
+
python eval_lmee_bench.py --json_path "results/exp_eval_lmee/lmee_answer.json" --root_dir "../data/LMEE-Bench/task_test"
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
## Citation
|
| 43 |
+
```bibtex
|
| 44 |
+
@inproceedings{wang2026explore,
|
| 45 |
+
title={Explore with Long-term Memory: A Benchmark and Multimodal LLM-based Reinforcement Learning Framework for Embodied Exploration},
|
| 46 |
+
author={Wang, Sen and Liu, Bangwei and Gao, Zhenkun and Ma, Lizhuang and Wang, Xuhong and Xie, Yuan and Tan, Xin},
|
| 47 |
+
booktitle={Proceedings of the IEEE/CVF Computer Vision and Pattern Recognition (CVPR)},
|
| 48 |
+
year={2026}
|
| 49 |
+
}
|
| 50 |
+
```
|