The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 82, in _split_generators
raise ValueError(
ValueError: The TAR archives of the dataset should be in WebDataset format, but the files in the archive don't share the same prefix or the same types.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.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.
Cub3: A Large-Scale Covisibility Dataset
Cub3 is a large-scale dataset comprising 5 million image pairs with dense, pixel-level covisibility annotations derived from the autonomous driving nuScenes dataset and the indoor ScanNet dataset. It was introduced alongside Alligat0R (arXiv:2503.07561), a NeurIPS 2025 Spotlight paper.
Covisibility Classes
Each pixel in a view is classified into one of three categories with respect to the other view:
| Class | Label | Description |
|---|---|---|
| Covisible | 0 (pixel value 255) | The 3D point is visible in both views |
| Occluded | 1 (pixel value 128) | The 3D point is occluded in the other view |
| Outside FOV | 2 (pixel value 0) | The 3D point is outside the field of view of the other view |
Dataset Variants
| Split | Overlap threshold | nuScenes pairs | ScanNet pairs | Total |
|---|---|---|---|---|
| Cub3-50 | >= 50% | 2.5M | 2.5M | 5M |
| Cub3-all | >= 5% | 2.5M | 2.5M | 5M |
Repository Structure
βββ nuscenes/
β βββ train_samples_50.json # Pair metadata for Cub3-50
β βββ train_samples_all.json # Pair metadata for Cub3-all
β βββ train_seg_50/ # Segmentation masks (10 shards)
β β βββ scene-00.tar.gz
β β βββ ...
β βββ train_seg_all/ # Segmentation masks (10 shards)
β βββ scene-00.tar.gz
β βββ ...
βββ scannet/
βββ train_samples_50.json
βββ train_samples_all.json
βββ scene00.tar.gz # Segmentation masks (8 shards)
βββ ...
Pair Metadata Format
nuScenes (train_samples_{50,all}.json)
Each entry is a list: [img1_name, img2_name, scene, relative_pose_4x4, overlap, angle, dist_ratio]
img1_name/img2_name: nuScenes sweep filenames (e.g.n008-2018-...CAM_FRONT__153565...jpg)scene: nuScenes scene id (e.g.scene-0527)relative_pose_4x4: 4x4 relative pose matrix from camera 1 to camera 2overlap: fraction of covisible pixelsangle: viewpoint angle between the two cameras (degrees)dist_ratio: scale ratio between the two views
ScanNet (train_samples_{50,all}.json)
Each entry is a list: [scene, img1_name, img2_name, overlap, angle, dist_ratio, relative_pose_4x4]
Segmentation Mask Format
Masks are stored as grayscale PNG images named <IMG1>+<IMG2>.png:
- Pixel value 255 = covisible
- Pixel value 128 = occluded
- Pixel value 0 = outside field of view
- Pixel value 42 (ScanNet only) = undefined / ignored during training
Download and Setup
pip install huggingface_hub[cli]
# Download metadata
huggingface-cli download thibautloiseau/Cub3 --include "nuscenes/train_samples_*.json" --local-dir data/Cub3
huggingface-cli download thibautloiseau/Cub3 --include "scannet/train_samples_*.json" --local-dir data/Cub3
# Download segmentation masks
huggingface-cli download thibautloiseau/Cub3 --include "nuscenes/train_seg_50/*.tar.gz" --local-dir data/Cub3
huggingface-cli download thibautloiseau/Cub3 --include "nuscenes/train_seg_all/*.tar.gz" --local-dir data/Cub3
huggingface-cli download thibautloiseau/Cub3 --include "scannet/*.tar.gz" --local-dir data/Cub3
# Extract archives
cd data/Cub3/nuscenes/train_seg_50 && for f in *.tar.gz; do tar xzf "$f"; done && cd -
cd data/Cub3/nuscenes/train_seg_all && for f in *.tar.gz; do tar xzf "$f"; done && cd -
cd data/Cub3/scannet && for f in scene*.tar.gz; do tar xzf "$f"; done && cd -
Expected on-disk layout after extraction:
data/Cub3/
βββ nuscenes/
β βββ train_samples_50.json
β βββ train_samples_all.json
β βββ train_seg_50/scene-XXXX/seg_aligned/<IMG1>+<IMG2>.png
β βββ train_seg_all/scene-XXXX/seg_aligned/<IMG1>+<IMG2>.png
βββ scannet/
βββ train_samples_50.json
βββ train_samples_all.json
βββ sceneXXXX_XX/segs/<IMG1>+<IMG2>.png
Important Notes
- Raw images are NOT included. You must obtain the original images from nuScenes and ScanNet under their respective licenses.
- The nuScenes annotations are generated using monocular depth predictions (UniDepth) and surface normals (Depth Anything V2) combined with COLMAP poses, following the pipeline from RUBIK. Some annotations may contain noise, particularly the distinction between covisible and occluded pixels.
- The ScanNet annotations use ground-truth depth maps and camera poses.
Usage with Alligat0R
See the Alligat0R GitHub repository for training scripts that consume this dataset directly, and demo.py for a quick covisibility visualization example.
Citation
@article{loiseau2026alligat0r,
title={Alligat0r: Pre-training through covisibility segmentation for relative camera pose regression},
author={Loiseau, Thibaut and Bourmaud, Guillaume and Lepetit, Vincent},
journal={Advances in Neural Information Processing Systems},
volume={38},
pages={13762--13789},
year={2026}
}
License
The Cub3 annotations are released under the MIT License. The underlying images from nuScenes and ScanNet are subject to their own licenses.
- Downloads last month
- 89