Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
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.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 83, in _split_generators
                  raise ValueError(
                  ...<2 lines>...
                  )
              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(
                               ~~~~~~~~~~~~~~~~~~~~~~~^
                      path=dataset,
                      ^^^^^^^^^^^^^
                      config_name=config,
                      ^^^^^^^^^^^^^^^^^^^
                      token=hf_token,
                      ^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                      path,
                  ...<6 lines>...
                      **config_kwargs,
                  )
                File "/usr/local/lib/python3.14/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.

Taskonomy Subset (3DVLM)

A small, fast-to-download slice of the Taskonomy real indoor-scan dataset, converted to a uniform posed-RGB-D format for quick model test-runs. This is a subset: 25 buildings (seeded pick, seed 0, from the Omnidata tiny split) × 100 frames each = 2,500 frames.

These are real photographs of scanned buildings with sensor-grade ground-truth depth and exact camera poses — no reconstruction or pseudo-labelling involved.

This subset is part of a family of uniformly-formatted posed-RGB-D test-run datasets: see also 3dvlm-replica_subset, 3dvlm-hm3d_subset, and 3dvlm-structured3d_subset (same on-disk layout and conventions).

Contents

25 buildings, one .tar each under taskonomy/. Each tar extracts to a building directory:

hanson/
├── images/            # frame_000000.jpg … frame_000099.jpg (100 RGB frames, 512×512)
├── depth.npy          # (100, 512, 512) float32
├── valid_mask.npy     # (100, 512, 512) bool   — True where depth is valid
├── extrinsics.npy     # (100, 4, 4)      float32 — world→camera (w2c)
├── intrinsics.npy     # (100, 3, 3)      float32 — pinhole K (per-frame)
└── meta.json          # scene_id, frame_ids, image_size, is_single_image

The first axis of every array is the frame, in the same order as meta.json's frame_ids and the sorted images/ files.

Note — independent captures. Taskonomy is single-image: each frame is a separate (point, view) photograph at a distinct camera position, not a video trajectory. meta.json sets is_single_image: true; do not assume cross-frame overlap or temporal continuity within a building.

Conventions

  • Coordinate frame: OpenCV (x-right, y-down, z-forward). extrinsics is the world→camera (w2c) matrix; invert it for camera→world. Poses are converted from the source Blender frame (Z-up world, OpenGL-style camera) via a Blender→OpenCV camera-axis flip before inversion.
  • Depth: projective z-depth in metres (distance along the camera z-axis, not Euclidean ray length). Decoded from the source 16-bit depth_zbuffer (÷512); the source is already planar z-buffer depth, so no Euclidean→z cosine correction is applied. Invalid pixels (source sentinel 65535, e.g. sky/missing geometry) are zeroed — use valid_mask to ignore them. Typical valid coverage is ≈98%, with depths in roughly the 0.4–14 m range.
  • Intrinsics: per-frame pinhole K, reconstructed from each frame's field of view on a square image (fx=fy, principal point centred). Image size is 512×512.

Source & provenance

Built from the public EPFL Taskonomy mirror (https://datasets.epfl.ch/taskonomy/{building}_{domain}.tar, no authentication). Buildings are drawn from the Omnidata tiny split (forbidden buildings removed); seed 0 selects 25 of them. Only three modalities per frame are used: rgb, depth_zbuffer, and point_info (camera FOV + Blender pose). Each building keeps the first 100 frames in source-tar order. Depth and poses are Taskonomy's own ground-truth values — no depth model or pseudo-labelling is involved (is_pseudo: false). The reconstructed (K, w2c) are verified to round-trip through the project's ray-map (DA3) convention.

There is no separate "full" mirror of this conversion; this 25-building slice is the published extent.

Quick start

import tarfile, json, numpy as np
from huggingface_hub import hf_hub_download

p = hf_hub_download("helioom/3dvlm-taskonomy_subset", "taskonomy/hanson.tar", repo_type="dataset")
tarfile.open(p).extractall("taskonomy/")

meta  = json.load(open("taskonomy/hanson/meta.json"))
depth = np.load("taskonomy/hanson/depth.npy")        # (100, 512, 512)
mask  = np.load("taskonomy/hanson/valid_mask.npy")   # (100, 512, 512)
K     = np.load("taskonomy/hanson/intrinsics.npy")   # (100, 3, 3)
w2c   = np.load("taskonomy/hanson/extrinsics.npy")    # (100, 4, 4)

# Back-project frame 0 to a camera-frame point cloud (metres):
H, W = meta["image_size"]
fx, fy, cx, cy = K[0,0,0], K[0,1,1], K[0,0,2], K[0,1,2]
ys, xs = np.mgrid[0:H, 0:W]
z = depth[0]
X = (xs - cx) / fx * z
Y = (ys - cy) / fy * z
pts = np.stack([X, Y, z], -1)[mask[0]]   # (M, 3) valid points

License & citation

Built on Taskonomy, released for research use only under the Stanford Taskonomy license (redistribution of derived subsets permitted for research); the same terms apply to this derived subset. If you use this data, please cite the original paper:

@inproceedings{zamir2018taskonomy,
  title     = {Taskonomy: Disentangling Task Transfer Learning},
  author    = {Zamir, Amir R. and Sax, Alexander and Shen, William B. and Guibas, Leonidas J. and Malik, Jitendra and Savarese, Silvio},
  booktitle = {Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
  year      = {2018}
}
Downloads last month
84