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 81, in _split_generators
                  first_examples = list(islice(pipeline, self.NUM_EXAMPLES_FOR_FEATURES_INFERENCE))
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 32, in _get_pipeline_from_tar
                  fs: fsspec.AbstractFileSystem = fsspec.filesystem("memory")
                                                  ~~~~~~~~~~~~~~~~~^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 302, in filesystem
                  cls = get_filesystem_class(protocol)
                File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 239, in get_filesystem_class
                  raise ValueError(f"Protocol not known: {protocol}")
              ValueError: Protocol not known: memory
              
              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 71, 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.

Qwen-3D Cached ScanNet ViT Features

This dataset contains precomputed Qwen2.5-VL ViT features for ScanNet RGB frames, used by Qwen-3D as presented in Qwen-3D: A Generalist 3D Vision-Language Model for Spatial Understanding to skip the ViT forward pass during training.

Project page: https://qwen-3d.github.io/
Code: https://github.com/ll220/qwen3d
Model: https://huggingface.co/katefgroup/Qwen-3D
Paper: https://arxiv.org/abs/2608.02980

See docs/RUN.md in the code repository for full training instructions (CACHE_QWEN_FEATURES / FEATURE_DIR).

Contents

Archive Backbone Approx. size
scannet_image_qwen_features_3b.tar Qwen2.5-VL-3B-Instruct ~182 GiB
scannet_image_qwen_features_7b.tar Qwen2.5-VL-7B-Instruct ~319 GiB

Each archive includes a backbone prefix (3b/ or 7b/). After extracting both into the same parent directory, features are stored as bfloat16 tensors at:

FEATURE_DIR/
  3b/<scene_id>/<frame>.pt
  7b/<scene_id>/<frame>.pt

Example: FEATURE_DIR/3b/scene0051_03/140.pt.

Download and extract

# Download (or pass a single filename to download one archive)
hf download katefgroup/qwen3d_cached_scannet_vit_features --local-dir ./qwen3d_cached_scannet_vit_features

# Extract both archives into the same FEATURE_DIR
FEATURE_DIR="/path/to/scannet_image_qwen_features"
mkdir -p "$FEATURE_DIR"
tar -xf scannet_image_qwen_features_3b.tar -C "$FEATURE_DIR"
tar -xf scannet_image_qwen_features_7b.tar -C "$FEATURE_DIR"

This yields FEATURE_DIR/3b/... and FEATURE_DIR/7b/... (matching the layout used by Qwen-3D).

Usage with Qwen-3D

Point FEATURE_DIR at the parent directory (the code resolves 3b / 7b from QWEN_MODEL):

CACHE_QWEN_FEATURES True \
FEATURE_DIR "/path/to/scannet_image_qwen_features" \
QWEN_MODEL "Qwen/Qwen2.5-VL-3B-Instruct"

For the 7B backbone, keep the same FEATURE_DIR and switch the model:

CACHE_QWEN_FEATURES True \
FEATURE_DIR "/path/to/scannet_image_qwen_features" \
QWEN_MODEL "Qwen/Qwen2.5-VL-7B-Instruct"
  • On a cache hit, the model skips the ViT forward.
  • On a miss during ScanNet training, it runs the ViT and writes missing .pt files under the resolved backbone subdirectory.
  • Caching applies to ScanNet datasets only. Leave CACHE_QWEN_FEATURES False (default) if you are not using cached features.

To rebuild the cache yourself instead of downloading, see docs/cache_qwen_vit_features.py.

Citation

@inproceedings{lin2026qwen3d,
  title     = {Qwen-3D: A Generalist 3D Vision-Language Model for Spatial Understanding},
  author    = {Lin, Lucy and Jain, Ayush and Liu, Yifan and Fragkiadaki, Katerina},
  booktitle = {European Conference on Computer Vision (ECCV)},
  year      = {2026}
}

License Note: This dataset is released under CC BY-NC 4.0. It may be used for non-commercial research purposes. Commercial use is not permitted under this license. ScanNet data itself is subject to the ScanNet Terms of Use.

Downloads last month
38

Collection including katefgroup/qwen3d_cached_scannet_vit_features

Paper for katefgroup/qwen3d_cached_scannet_vit_features