The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code:   ConfigNamesError
Exception:    FileNotFoundError
Message:      Couldn't find a dataset script at /src/services/worker/aisuko/ucf101-subset/ucf101-subset.py or any data file in the same directory. Couldn't find 'aisuko/ucf101-subset' on the Hugging Face Hub either: FileNotFoundError: No (supported) data files or dataset script found in aisuko/ucf101-subset. 
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 65, in compute_config_names_response
                  for config in sorted(get_dataset_config_names(path=dataset, token=hf_token))
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/inspect.py", line 351, in get_dataset_config_names
                  dataset_module = dataset_module_factory(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 1507, in dataset_module_factory
                  raise FileNotFoundError(
              FileNotFoundError: Couldn't find a dataset script at /src/services/worker/aisuko/ucf101-subset/ucf101-subset.py or any data file in the same directory. Couldn't find 'aisuko/ucf101-subset' on the Hugging Face Hub either: FileNotFoundError: No (supported) data files or dataset script found in aisuko/ucf101-subset.

Need help to make the dataset viewer work? Open a discussion for direct support.

How to use

import tarfile
from huggingface_hub import hf_hub_download

hf_dataset_identifier="aisuko/ucf101-subset"
filename="UCF101_subset.tar.gz"
file_path=hf_hub_download(repo_id=hf_dataset_identifier, filename=filename, repo_type="dataset")

import tarfile

with tarfile.open(file_path) as t:
     t.extractall(".")

Check the folder

UCF101_subset/
    train/
        BandMarching/
            video_1.mp4
            video_2.mp4
            ...
        Archery
            video_1.mp4
            video_2.mp4
            ...
        ...
    val/
        BandMarching/
            video_1.mp4
            video_2.mp4
            ...
        Archery
            video_1.mp4
            video_2.mp4
            ...
        ...
    test/
        BandMarching/
            video_1.mp4
            video_2.mp4
            ...
        Archery
            video_1.mp4
            video_2.mp4
            ...
        ...
Downloads last month
4
Edit dataset card