Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,70 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
- question-answering
|
| 6 |
+
tags:
|
| 7 |
+
- Navigation
|
| 8 |
+
- Retrieval
|
| 9 |
+
- Visual Embedding
|
| 10 |
+
- Multimodal
|
| 11 |
+
- VLM
|
| 12 |
+
- MLLM
|
| 13 |
+
size_categories:
|
| 14 |
+
- n<1K
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
# RAVEN: Long-Horizon Reasoning and Navigation with a Visuo-Spatial-Temporal Memory
|
| 19 |
+
|
| 20 |
+
[Website](https://#) [Code](https://#) [Citation](#citation)
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
Introduction:
|
| 24 |
+
We release the RAVEN-QA dataset.
|
| 25 |
+
|
| 26 |
+
- Task: given a subsampled list of frames from a long video, each paired with timestamps and positions, and given a user query,
|
| 27 |
+
the model or robot will find the time or positions where the queried thing shows up. The query can be objects, places, events, and concepts.
|
| 28 |
+
|
| 29 |
+
- Categories: They cover dominant and secondary object retrieval (dominant or secondary in view), visual reasoning, commonsense reasoning, information recall, and spatial understanding.
|
| 30 |
+
|
| 31 |
+
- Diversity: The dataset covers real-world and simulation robot view videos, web-sourced human view videos, and our self-recorded tour videos.
|
| 32 |
+
|
| 33 |
+
## Parts
|
| 34 |
+
|
| 35 |
+
1. irs: A simple retrieval dataset, including YouTube indoor and outdoor videos.
|
| 36 |
+
(6 videos; 54 queries; with text and image queries)
|
| 37 |
+
2. irs_hard: A harder human-ego retrieval dataset, including self-recorded and web-sourced videos for more challenging object-finding.
|
| 38 |
+
(3 videos; 41 queries; with text queries)
|
| 39 |
+
3. habitat_sim: A robot simulation dataset in Habitat environments.
|
| 40 |
+
(19 videos; 157 queris; with text queries)
|
| 41 |
+
4. real_world: A real-world robot exploration dataset taken in our labs and public areas.
|
| 42 |
+
(4 videos; 21 queries; with text queries)
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
## File Structure
|
| 49 |
+
|
| 50 |
+
```
|
| 51 |
+
dataset_name/
|
| 52 |
+
├─ subsplit_name/
|
| 53 |
+
│ ├─ video_name/
|
| 54 |
+
│ │ ├─ frames/
|
| 55 |
+
│ │ │ ├─ frame_001.jpg
|
| 56 |
+
│ │ │ ├─ frame_002.jpg
|
| 57 |
+
│ │ │ └─ ...
|
| 58 |
+
│ │ └─ questions.json
|
| 59 |
+
│ ├─ ...
|
| 60 |
+
│ │
|
| 61 |
+
├─ subsplit_name/
|
| 62 |
+
│ ├─ video_name/
|
| 63 |
+
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
## Citation
|
| 69 |
+
|
| 70 |
+
TODO
|