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 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.

SemTPCH

The data archive for SemTPCH, a multimodal semantic-query benchmark of 22 analytical queries over four datasets (e-commerce, face, video, audio). Each query mixes traditional relational operators with semantic operators (semantic filter / classify / map / join / cluster / rank / aggregate) that require perception (vision, audio, or text understanding).

This repository ships only the curated benchmark data (media files + tables). Query definitions, the Palimpzest and Claude-Code runners, and the scorer live in the code repository (SemTPCH).

Quick start

# from the root of the SemTPCH code repository
tar --zstd -xf semtpch-data.tar.zst

This reconstructs build/{ecommerce,face,ava,vggsound}/, which is exactly where the runners and scorer read from:

build/
β”œβ”€β”€ ecommerce/   { media/, visible.csv, full.csv }
β”œβ”€β”€ face/        { media/, visible.csv, full.csv }
β”œβ”€β”€ ava/         { media/, visible.csv, full.csv, action_list.csv }
└── vggsound/    { media/, visible.csv, full.csv, modalities/keyframes/ }

What's in each table

  • visible.csv β€” the input rows the system sees (500 rows per dataset). Contains the visible columns plus the media path.
  • full.csv β€” same rows plus the hidden perception columns (e.g. gender, masterCategory, articleType, hair_color, baseColour, action_ids, label). Hidden from the system; used only to build gold answers and score.
  • Numeric/order columns (list_price, discount, return_flag, order_date, …) are synthetic, generated in the style of TPC-H.

Media

Dataset Media Source
ecommerce 500 product images Myntra Fashion Dataset
face 500 face images CelebA
ava ~1000 video clips, 10 s each, cut around the AVA middle-frame timestamp AVA v2.2
vggsound ~500 audio/video clips, 10 s each, + 150 keyframes under modalities/keyframes/ VGGSound (YouTube)

For VGGSound, visible.csv has a keyframe_paths column pointing into modalities/keyframes/; the reference pipeline dispatches each row as caption β†’ keyframe β†’ video (keyframes are preferred when available to save cost).

File integrity

File Size SHA-256
semtpch-data.tar.zst 1.31 GiB (1,310,566,400 bytes) 8b81012a47c811e5ae21c359598bda981fdeea4c0a67d74b0830ab77e5d0c309

Verify after download:

echo "8b81012a47c811e5ae21c359598bda981fdeea4c0a67d74b0830ab77e5d0c309  semtpch-data.tar.zst" | sha256sum -c
zstd -t semtpch-data.tar.zst   # integrity check

The archive contains 2,661 files. It does not contain: the original (full) source datasets, raw/intermediate videos, sample manifests, download scripts, backups, or any logs β€” only the curated subset above.

Licensing & intended use

The media in this archive is derived from four third-party datasets. Each imposes its own (research / non-commercial) license, and redistribution of the original source datasets is not permitted by their terms. This archive is a small, curated benchmark subset provided solely so that published results on SemTPCH can be reproduced.

Source License / terms
CelebA Non-commercial research use only
Myntra Fashion Dataset Kaggle Terms of Service (research/personal use)
AVA v2.2 Research use (see the AVA dataset license)
VGGSound Metadata under CC-BY-4.0; audio originates from YouTube and is not owned by the VGGSound authors

By downloading you agree to use this data solely for non-commercial academic research and to respect each source dataset's license. No rights to the underlying media are granted or implied beyond what the original sources allow.

Provenance notes

  • AVA clips are 10-second segments aligned to AVA's middle-frame timestamp; multiple person/action annotations at the same (video_id, timestamp) are aggregated into a single action_ids set.
  • VGGSound clips were fetched from YouTube via yt-dlp and trimmed to 10 s; keyframes were extracted for the perception dispatch above. YouTube availability of the original clips is not guaranteed.
  • The synthetic relational columns are generated in the TPC-H tradition and carry no third-party restrictions.
Downloads last month
60