Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

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.

test_hf_data_5

This is a video dataset in WebDataset format.

Structure

  • Each .tar archive contains video files (.mp4) and metadata (.json) with the same prefix.
  • The JSON files contain:
    • file_name
    • label (numeric)
    • categories (emotion category string)
    • description (human annotation)

How to use

from datasets import load_dataset

ds = load_dataset("ZebangCheng/test_hf_data_5", split="train", streaming=True)
sample = next(iter(ds))

# Save video
with open(sample["json"]["file_name"], "wb") as f:
    f.write(sample["mp4"])
Downloads last month
10