--- pretty_name: VGGSound-Duet^Mask language: - en task_categories: - image-segmentation size_categories: - 1K_.pkl ``` The frame index is zero-padded to six digits. Each pickle contains one NumPy mask array. The evaluation code accepts either a two-dimensional array `(H, W)` or a single-channel array `(H, W, 1)`. Spatial dimensions follow the corresponding source frame and may vary. Masks are interpreted as binary using a threshold of `0.5`. For example, `-0BIyqJj9ZU_000030.pkl` contains a `float64` NumPy array of shape `(240, 320, 1)` with values `0` and `1`. Its size of approximately 615 kB is expected: an uncompressed `240 × 320 × 1` float64 array alone requires 614,400 bytes. ## Reading a mask ```python import pickle from pathlib import Path import numpy as np mask_path = Path("VGGSound-Duet-Mask/masks/-0BIyqJj9ZU_000030.pkl") with mask_path.open("rb") as file: mask = pickle.load(file) if mask.ndim == 3: mask = mask[:, :, 0] mask = (mask > 0.5).astype(np.float32) print(mask.shape, mask.dtype, mask.min(), mask.max()) ``` The pretrained weights are available in the [SCAV model repository](https://huggingface.co/lemonweed6312/SCAV). See the [official code README](https://github.com/happy-new-bears/SCAV#evaluation-with-pretrained-weights) for the remaining data preparation and evaluation requirements. ## Dataset details - **Developed by:** Han Hu, Dongheng Lin, Yuqi Hou, Haotian Li, Hyung Jin Chang, and Jianbo Jiao - **Institution:** The MIx Group, University of Birmingham - **Associated paper:** *Whence the Voice? Self-supervised Dual-source Audio-Visual Localisation via Selective Convergence* - **Conference:** ECCV 2026 - **Task:** dual-source audio-visual localisation evaluation - **Annotation type:** foreground segmentation mask - **Number of mask files in this repository:** 4,512 - **Benchmark coverage reported in the paper:** 3,951 currently accessible dual-source test pairs across 220 sound categories ## Limitations and responsible use - The masks are automatically generated with SAM and may contain segmentation errors, omissions, or ambiguous object boundaries. - Dataset coverage depends on the availability of the original VGGSound videos; some source videos are no longer available on YouTube. - The annotations identify visible foreground regions used for benchmark evaluation. They should not be interpreted as exhaustive semantic segmentation labels. - Users are responsible for complying with the terms and licenses of VGGSound, YouTube, and any source media they obtain separately. ## Citation If you use VGGSound-Duet^Mask or the SCAV checkpoints, please cite: ```bibtex @inproceedings{hu2026scav, title = {Whence the Voice? Self-supervised Dual-source Audio-Visual Localisation via Selective Convergence}, author = {Hu, Han and Lin, Dongheng and Hou, Yuqi and Li, Haotian and Chang, Hyung Jin and Jiao, Jianbo}, booktitle = {European Conference on Computer Vision (ECCV)}, year = {2026} } ```