---
license: cc-by-4.0
tags:
- benchmark
- embodied-ai
- aerial-reasoning
- multimodal
- point-cloud
- landmark-annotation
- temporal-reasoning
language:
- en
task_categories:
- visual-question-answering
- object-detection
image:
visual-question-answering:
resolutions:
- 4096 x 3072
- 1440 x 1080
color_space:
- rgb
encoding:
- jpeg
video:
video-question-answering:
resolutions:
- 1440 x 1080
encoding:
- H264
multi-modal:
visual-grounding:
resolutions:
- 4096 x 3072
- 1440 x 1080
encoding:
- jpeg
- H264
languages:
- en
configs:
- config_name: default
data_files:
- split: test
path: scene_data/**
- split: test
path: task_data/**/image_tasks/**
- split: test
path: task_data/**/video_tasks/**
---
_**[Like Liu](https://likeliu.com), Zhengzheng Xu, Haitao He, Hongzhe Li, Shuchang Zhang, [Dian Shao](https://scholar.google.com/citations?user=amxDSLoAAAAJ&hl=en)
†**_
†Corresponding Author
Northwestern Polytechnical University, China University of Petroleum
If you like our project, please give us a star ⭐ on GitHub for latest update.
# UAV-DualCog Dataset Repository Guide
Last updated: 2026-08-11
This is the official dataset repository guide for **UAV-DualCog**.
## 1. What UAV-DualCog Is
UAV-DualCog is a drone-centric multimodal reasoning benchmark for **dual cognition**: self-aware
reasoning and environment-aware reasoning under aerial observation. The release targets two
complementary goals:
- benchmark evaluation for multimodal foundation models,
- reusable structured assets for downstream dataset users.
The benchmark is organized around one primary capability axis and one observation axis:
- dual cognition:
- self-aware reasoning,
- environment-aware reasoning;
- media:
- image tasks,
- video tasks.
The key point is that **dual cognition** is the capability being evaluated, while **image and
video** are the media used to expose that capability. This design yields a benchmark that does not
only test answer selection, but also tests whether a model can align its reasoning with spatial
evidence or temporal evidence.
## 1.1 Quick Start
Recommended entry points:
1. Read this dataset card to understand the release scope and file contracts.
2. Use the benchmark website to inspect task definitions, examples, and leaderboard views:
- https://uav-dualcog.lozumi.com/
3. Use the official code repository for loading, preprocessing, and evaluation:
- https://github.com/SmartDianLab/UAV-DualCog
4. Use the AerialVLN simulator package when reproducing simulator-backed collection or rendering:
- https://www.kaggle.com/datasets/shuboliu/aerialvln-simulators
For detailed benchmark definitions, construction details, and usage instructions, the benchmark
website should be treated as the primary external reference.
## 2. Benchmark Scope
Current core release:
- 12 released benchmark scenes,
- 512 validated landmarks,
- 4096 image QA samples,
- 2048 video QA samples,
- 4 image task families,
- 2 video task families.
All currently released benchmark task files are test-only. The repository does not currently expose public `train` or `validation` splits for task evaluation.
The released 12-scene benchmark subset is drawn from a larger reviewed scene pool. In the public repository, the benchmark task layer and the scene asset layer do not have identical scope:
- `task_data` currently corresponds to the 12-scene benchmark release;
- `scene_data` covers the full set of 18 reviewed scenes that have public geometry and landmark-review assets.
This means the repository exposes a broader scene asset pool than the current benchmark task split. Scene-level geometric assets and reviewed landmark assets are provided so that users can inspect the benchmark context rather than treating the task files as opaque black boxes.
For clarity:
- `scene_data` is a supporting public asset release rather than a training split;
- `task_data` is a benchmark evaluation release and should be treated as test data.
## 3. Capability Definition
### 3.1 Self-aware reasoning
Self-aware reasoning evaluates whether a UAV agent can reason about itself:
- where it is relative to a landmark,
- what it will observe after a described motion,
- what behavior it is executing,
- when that behavior occurs.
### 3.2 Environment-aware reasoning
Environment-aware reasoning evaluates whether a UAV agent can reason about the external world from its current motion context:
- where the target landmark is relative to the UAV,
- which action is appropriate given the landmark-relative situation,
- how many times a landmark becomes visible in a mission,
- during which time intervals the landmark is visible.
### 3.3 Evidence-aware evaluation
UAV-DualCog explicitly separates:
- semantic correctness,
- evidence grounding.
For image tasks, a model is evaluated on both:
- selecting the correct answer option,
- localizing the landmark with a normalized bounding box.
For video tasks, a model is evaluated on both:
- predicting the correct semantic answer,
- localizing the relevant time interval(s).
This is one of the core benchmark design principles: answer-only success is not sufficient if the supporting spatial or temporal evidence is incorrect.
## 4. Task Families
### 4.1 Image tasks (Stage 4)
The image branch contains four task families. Each released landmark contributes both `4way` and `8way` difficulty variants.
1. `self_where`
- Canonical display name: `Landmark-Relative Position Reasoning`
- Cognition: self-aware
- Input: one landmark-centric reference image plus one egocentric query observation
- Output: one answer option and one landmark bounding box on the query image
- Core question: where is the UAV relative to the landmark
2. `self_what`
- Canonical display name: `Future Observation Prediction`
- Cognition: self-aware
- Input: one reference image plus a future-view multiple-choice set
- Output: one answer option
- Core question: which future observation matches the described motion outcome
3. `env_where`
- Canonical display name: `Self-Relative Position Reasoning`
- Cognition: environment-aware
- Input: one current egocentric observation
- Output: one answer option and one landmark bounding box on the query image
- Core question: where is the landmark relative to the UAV
4. `env_how`
- Canonical display name: `Landmark-Driven Action Decision`
- Cognition: environment-aware
- Input: one current egocentric observation
- Output: one answer option and one landmark bounding box on the query image
- Core question: what action decision is appropriate under the current landmark-relative situation
### 4.2 Video tasks (Stage 3)
The video branch contains two task families.
1. `self_instance_recognition_joint`
- Canonical display name: `Flight Behavior Recognition and Temporal Localization`
- Cognition: self-aware
- Input: task video plus mission-conditioned context
- Output: behavior option(s) and temporal interval(s)
- Public reporting also derives:
- composite-level semantic accuracy,
- atomic-level semantic accuracy,
- temporal localization quality.
2. `env_visibility_reasoning`
- Canonical display name: `Landmark Visibility Counting and Interval Reasoning`
- Cognition: environment-aware
- Input: task video plus target landmark reference
- Output: visibility count and visible time interval(s)
### 4.3 Task summary table
| Task ID | Display name | Modality | Cognition | Main input | Main output |
| --- | --- | --- | --- | --- | --- |
| `self_where` | Landmark-Relative Position Reasoning | image | self-aware | reference image + query observation | option + bbox |
| `self_what` | Future Observation Prediction | image | self-aware | reference image + future-view options | option |
| `env_where` | Self-Relative Position Reasoning | image | environment-aware | query observation | option + bbox |
| `env_how` | Landmark-Driven Action Decision | image | environment-aware | query observation | option + bbox |
| `self_instance_recognition_joint` | Flight Behavior Recognition and Temporal Localization | video | self-aware | task video + mission context | option(s) + interval(s) |
| `env_visibility_reasoning` | Landmark Visibility Counting and Interval Reasoning | video | environment-aware | task video + landmark context | count + interval(s) |
## 5. Evaluation Objects and Metrics
### 5.1 Image tasks
Image-task prediction objects contain:
- `answer_option_id`
- optionally `bbox_xyxy_norm`
Main metrics include:
- option accuracy,
- `BBox Acc@50IoU`,
- mean IoU.
### 5.2 Video tasks
Video-task prediction objects contain:
- answer option(s) or behavior label(s),
- interval(s) in seconds,
- for visibility tasks, visible count.
Main metrics include:
- semantic correctness,
- temporal IoU or interval agreement,
- count accuracy for visibility reasoning.
The public leaderboard may present aggregated summary views for readability, but the underlying task manifests and experiment outputs retain the task-level prediction structure.
## 6. Repository Scope and Boundary
The public repository is the release-facing layer of the dataset. It includes:
- scene-level geometry and reviewed landmarks,
- released benchmark task assets,
- released manifests and render requests,
- benchmark-ready media references.
The scope is asymmetric by design:
- `scene_data` contains the complete 18-scene reviewed scene release;
- `task_data` currently contains the 12-scene benchmark task release.
The released task layer is also split-asymmetric in another sense:
- the repository currently provides public benchmark test data only;
- it does not provide public train or validation task splits.
It intentionally excludes many internal generation-time artifacts, including:
- internal logs,
- temporary caches,
- internal experiment workspaces,
- internal review-only intermediate files not needed for public reproduction.
## 7. Top-Level Layout
The public repository is conceptually split into two release layers.
```text
scene_data/
airsim_env_*/
pcd_map/
landmarks_raw/
landmarks_review/
task_data/
airsim_env_*/
image_tasks/
assets/
manifests/
render_requests/
selections/
video_tasks/
missions/
datasets/
selections/
```
### 7.1 `scene_data`
This layer stores scene-level assets and landmark review outputs.
Important release note:
- `scene_data` is not restricted to the 12 benchmark test scenes.
- The current public release contains all 18 reviewed scenes with available scene geometry and landmark-review outputs.
- `pcd_map/`
- fused point-cloud assets and geometry support files.
- `landmarks_raw/`
- pre-review landmark candidate outputs.
- `landmarks_review/`
- reviewed landmark instances and downstream-consumable landmark metadata.
### 7.2 `task_data`
This layer stores benchmark task artifacts.
- `image_tasks/`
- Stage 4 image QA assets, manifests, and render requests.
- `video_tasks/`
- Stage 3 mission-level task videos, final-task metadata, and released manifests.
## 8. Data Contracts
The following files are the main public contracts that downstream users should treat as stable interfaces.
### 8.1 Scene review contract
`scene_data/