Add dataset card and documentation for SpatialUAV

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-text-to-text
5
+ - video-text-to-text
6
+ tags:
7
+ - uav
8
+ - spatial-intelligence
9
+ - vqa
10
+ ---
11
+
12
+ # SpatialUAV: Benchmarking Spatial Intelligence for Low-Altitude UAV Perception, Collaboration, and Motion
13
+
14
+ [**Paper**](https://huggingface.co/papers/2606.27876) | [**GitHub**](https://github.com/Hyu-Zhang/SpatialUAV)
15
+
16
+ **SpatialUAV** is a benchmark for evaluating spatial intelligence in real low-altitude UAV scenarios. It covers perception, spatial relation reasoning, aerial-aerial collaboration, aerial-ground collaboration, and UAV motion understanding under a unified visual-question-answer format.
17
+
18
+ <p align="center">
19
+ <img src="https://raw.githubusercontent.com/Hyu-Zhang/SpatialUAV/main/assets/example_vis.png" width="100%" alt="SpatialUAV examples">
20
+ </p>
21
+
22
+ ## Highlights
23
+
24
+ - **4,331 curated instances** from real low-altitude UAV images, videos, and metadata.
25
+ - **14 task types** across semantic discrimination, spatial relations, aerial-aerial collaboration, aerial-ground collaboration, and motion understanding.
26
+ - **7 visual input configurations** covering single images, paired views, candidate-view selection, annotated images, and ordered video frames.
27
+ - **9 answer formats**, including option labels, region IDs, region pairs, bounding boxes, angle-distance values, movement directions, and free-form text.
28
+ - **Task-specific evaluation** for heterogeneous outputs instead of relying on one generic text metric.
29
+
30
+ ## Benchmark Overview
31
+
32
+ <p align="center">
33
+ <img src="https://raw.githubusercontent.com/Hyu-Zhang/SpatialUAV/main/assets/data_pipeline.png" width="100%" alt="SpatialUAV data pipeline">
34
+ </p>
35
+
36
+ | Group | Instances | Task Types | Main Capability |
37
+ | --- | ---: | --- | --- |
38
+ | Semantic Discrimination | 599 | Region Recognition, Anomaly Detection | Recognize queried objects and safety-critical regions |
39
+ | Spatial Relation | 716 | Direction Recognition, Distance Comparison | Infer direction and relative depth from UAV views |
40
+ | Aerial-Aerial Collaboration | 1,231 | Collaboration Recognition, Shared Association, Object Matching, Camera Transformation, Occlusion Removal | Match and reason across multiple UAV viewpoints |
41
+ | Aerial-Ground Collaboration | 785 | Shared Association, Collaboration Recognition, View Translation, Path Planning | Align aerial and ground observations |
42
+ | Motion Understanding | 1,000 | Global Motion | Describe UAV/camera motion over ordered frames |
43
+
44
+ ## Data Format
45
+
46
+ The annotation file is JSONL. Each line is one benchmark instance:
47
+
48
+ ```json
49
+ {
50
+ "id": "Region_Recognition_00001",
51
+ "image": ["./SpatialUAV/samples_Single_Image/img0001.jpg"],
52
+ "conversations": [
53
+ {
54
+ "from": "human",
55
+ "value": "Which regions in the image contain a parking lot? Answer with only the region labels, formatted exactly like `Region 1, 2`. No explanation."
56
+ }
57
+ ],
58
+ "source": "SpatialUAV",
59
+ "GT": "Region 3, 4."
60
+ }
61
+ ```
62
+
63
+ Expected dataset layout after download:
64
+
65
+ ```text
66
+ SpatialUAV/
67
+ annotations.jsonl
68
+ annotations_subset_20pct_per_task.jsonl
69
+ samples_Single_Image/
70
+ samples_A2A_Pured/
71
+ samples_A2A_detected/
72
+ samples_A2A_Occlusion_Removal/
73
+ samples_A2G_Pured/
74
+ samples_A2G_detected/
75
+ samples_A2G_Path_Planning/
76
+ samples_Motion_Understanding_Frames/
77
+ ```
78
+
79
+ Use `annotations_subset_20pct_per_task.jsonl` for quick checks and `annotations.jsonl` for full benchmark evaluation.
80
+
81
+ ## Citation
82
+
83
+ ```bibtex
84
+ @article{zhang2026spatialuav,
85
+ title = {SpatialUAV: Benchmarking Spatial Intelligence for Low-Altitude UAV Perception, Collaboration, and Motion},
86
+ author = {Zhang, Haoyu and Liu, Meng and Xiang, Qianlong and Wang, Kun and Wang, Yaowei and Nie, Liqiang},
87
+ journal = {arXiv preprint arXiv:2606.27876},
88
+ year = {2026}
89
+ }
90
+ ```