Dataset Viewer
The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code:   ConfigNamesError
Exception:    RuntimeError
Message:      Dataset scripts are no longer supported, but found OccuFly.py
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 67, in compute_config_names_response
                  config_names = get_dataset_config_names(
                                 ^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 161, in get_dataset_config_names
                  dataset_module = dataset_module_factory(
                                   ^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 1207, in dataset_module_factory
                  raise e1 from None
                File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 1167, in dataset_module_factory
                  raise RuntimeError(f"Dataset scripts are no longer supported, but found {filename}")
              RuntimeError: Dataset scripts are no longer supported, but found OccuFly.py

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

OccuFly Dataset

Following its acceptance as a CVPR 2026 Oral, we release OccuFly: the first real-world, large-scale camera-based benchmark for Semantic Scene Completion (SSC) and Metric Monocular Depth Estimation from the aerial perspective.

๐ŸŒ Project Page: markus-42.github.io/publications/2026/occufly/
๐Ÿค— Aerial DepthAnything2: huggingface.co/markus-42/OccuFly-DepthAnythingV2
๐Ÿ“„ Paper: arXiv:2512.20770
๐Ÿ“š Full Documentation GitHub: See github.com/markus-42/occufly


Quick Start

1. Install Dependencies

pip install huggingface-hub tqdm numpy Pillow

2. Download Dataset

Use the download script located in this repository:

# Download all scenes
python download_occufly.py

# Download specific split
python download_occufly.py --split train
python download_occufly.py --split validation
python download_occufly.py --split test

# Download specific scenes (1-9)
python download_occufly.py --scenes 1 2 3

# Include predicted depth maps
python download_occufly.py --include_depth_predictions
python download_occufly.py --split train --include_depth_predictions

# Download only predicted depth maps
python download_occufly.py --only_depth_predictions

# Custom output directory
python download_occufly.py --output ./my_data

Dataset Splits

  • Train: Scenes 1-5
  • Validation: Scenes 6-7
  • Test: Scenes 8-9

Each scene has 3 altitudes: 30m, 40m, 50m

Full Documentation

For detailed documentation, visit github.com/markus-42/occufly.

Citation


@inproceedings{gross2025occufly,
    title={{OccuFly: A 3D Vision Benchmark for Semantic Scene Completion from the Aerial Perspective}}, 
    author={Markus Gross and Sai B. Matha and Aya Fahmy and Rui Song and Daniel Cremers and Henri Meess},
    booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
    year={2026},
}

License

This dataset is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) license.

  • You can: Share and adapt the material for non-commercial purposes
  • You must: Give credit, indicate changes, and use the same license for derivative works
  • You cannot: Use the material for commercial purposes without permission

For full license details, see creativecommons.org/licenses/by-nc-sa/4.0/

Downloads last month
25

Paper for markus-42/OccuFly