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.

AVISet

AVISet is a large-scale dataset for mask-guided, text-conditioned video editing. Each sample pairs a source video with a temporally aligned mask video that identifies the editable subject or region. Natural-language captions describe the source content, and the test split additionally provides an editing prompt describing the desired edited result.

AVISet is the official dataset released with Audio-sync Video Instance Editing with Granularity-Aware Mask Refiner.

The dataset contains 73,505 samples across training, validation, and test splits. All media is packaged into independently extractable TAR shards for reliable downloading and large-scale data loading.

AVI-Edit

Dataset Summary

Split Samples Source videos Mask videos TAR shards TAR size
Training 71,505 71,505 71,505 36 170.67 GB
Validation 1,000 1,000 1,000 1 2.38 GB
Test 1,000 1,000 1,000 1 2.30 GB
Total 73,505 73,505 73,505 38 175.35 GB

The training and validation splits provide source captions. The test split also contains editing_prompt, which describes the intended transformation of the masked subject or region.

Repository Structure

AVISet/
β”œβ”€β”€ README.md
β”œβ”€β”€ training.csv
β”œβ”€β”€ validating.csv
β”œβ”€β”€ testing.csv
β”œβ”€β”€ training/
β”‚   β”œβ”€β”€ part_01.tar
β”‚   β”œβ”€β”€ part_02.tar
β”‚   β”œβ”€β”€ ...
β”‚   └── part_36.tar
β”œβ”€β”€ validating/
β”‚   └── part_01.tar
└── testing/
    └── part_01.tar

Each sample contains two MP4 files with matching numeric identifiers:

000000.mp4
000000_mask.mp4
000001.mp4
000001_mask.mp4
...
  • <id>.mp4 is the source video.
  • <id>_mask.mp4 is its temporally aligned mask video.
  • White mask pixels identify the editable foreground or subject.
  • Black mask pixels identify regions intended to remain unchanged.

The source and mask videos have matching frame counts, frame rates, durations, and spatial dimensions. Source videos may contain an audio track, while mask videos contain video only. Media properties such as resolution and frame rate can vary across samples.

CSV Schema

Training and validation

training.csv and validating.csv contain the following fields:

Field Type Description
path string Path to the source video relative to the extracted dataset root, for example training/000000.mp4.
mask_path string Path to the corresponding mask video, for example training/000000_mask.mp4.
caption string Natural-language description of the source video's subjects, actions, appearance, and scene.

Test

testing.csv contains one additional field:

Field Type Description
path string Path to the source video relative to the extracted dataset root, for example testing/000000.mp4.
mask_path string Path to the corresponding mask video, for example testing/000000_mask.mp4.
caption string Natural-language description of the original source video.
editing_prompt string Text description of the desired edited video, especially the intended transformation of the masked subject or region.

An abbreviated test record looks like:

path,mask_path,caption,editing_prompt
testing/000000.mp4,testing/000000_mask.mp4,"A young man appears to be engaged in a conversation...","A young woman with long dark hair appears to be engaged in a conversation..."

Download

Download the complete dataset with the Hugging Face CLI:

huggingface-cli download suimu/AVISet \
  --repo-type dataset \
  --local-dir AVISet

To download only selected files or splits, use --include. For example:

# Validation metadata and media only
huggingface-cli download suimu/AVISet \
  --repo-type dataset \
  --include "validating.csv" "validating/*" \
  --local-dir AVISet

# Test metadata and media only
huggingface-cli download suimu/AVISet \
  --repo-type dataset \
  --include "testing.csv" "testing/*" \
  --local-dir AVISet

Extraction

Extract each split into a directory with the same name as the CSV path prefix:

mkdir -p data/training data/validating data/testing

for shard in AVISet/training/part_*.tar; do
  tar -xf "$shard" -C data/training
done

for shard in AVISet/validating/part_*.tar; do
  tar -xf "$shard" -C data/validating
done

for shard in AVISet/testing/part_*.tar; do
  tar -xf "$shard" -C data/testing
done

cp AVISet/training.csv AVISet/validating.csv AVISet/testing.csv data/

The resulting layout is:

data/
β”œβ”€β”€ training.csv
β”œβ”€β”€ validating.csv
β”œβ”€β”€ testing.csv
β”œβ”€β”€ training/
β”‚   β”œβ”€β”€ 000000.mp4
β”‚   β”œβ”€β”€ 000000_mask.mp4
β”‚   └── ...
β”œβ”€β”€ validating/
β”‚   β”œβ”€β”€ 000000.mp4
β”‚   β”œβ”€β”€ 000000_mask.mp4
β”‚   └── ...
└── testing/
    β”œβ”€β”€ 000000.mp4
    β”œβ”€β”€ 000000_mask.mp4
    └── ...

Each TAR shard can be extracted independently. Files in different shards use unique identifiers within their split, so all shards for a split can be extracted into the same directory.

Citation

If you find AVISet or AVI-Edit useful for your research, please cite:

@article{avi-edit,
  title={Audio-sync Video Instance Editing with Granularity-Aware Mask Refiner},
  author={Zheng, Haojie and Weng, Shuchen and Liu, Jingqi and Yang, Siqi and Shi, Boxin and Wang, Xinlong},
  journal={arXiv preprint arXiv:2512.10571},
  year={2025}
}

License

The repository declares the Apache License 2.0. Users are responsible for verifying that their intended use also complies with any rights and restrictions applicable to the underlying media.

Downloads last month
93

Paper for suimu/AVISet