The dataset viewer is not available for this subset.
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.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 82, in _split_generators
raise ValueError(
ValueError: The TAR archives of the dataset should be in WebDataset format, but the files in the archive don't share the same prefix or the same types.
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 65, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/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.
Vista4D: Video Reshooting with 4D Point Clouds (CVPR 2026 Highlight) – Evaluation Dataset
Kuan Heng Lin1,3∗, Zhizheng Liu1,4∗, Pablo Salamanca1,2, Yash Kant1,2, Ryan Burgert1,2,5∗, Yuancheng Xu1,2, Koichi Namekata1,2,6∗, Yiwei Zhao2, Bolei Zhou4, Micah Goldblum3, Paul Debevec1,2, Ning Yu1,2
1Eyeline Labs, 2Netflix, 3Columbia University, 4UCLA, 5Stony Brook University, 6University of Oxford
∗Work done during an internship at Eyeline Labs
Vista4D is a video reshooting framework which synthesizes the dynamic scene represented by an input source video from novel camera trajectories and viewpoints. We bridge the distribution shift between training and inference for point-cloud-grounded video reshooting, as Vista4D is robust to point cloud artifacts from imprecise 4D reconstruction of real-world videos by training on noisy, reconstructed multiview videos. Our 4D point cloud with temporally-persistent static points also explicitly preserves scene content and improved camera control. Vista4D generalizes to real-world applications such as dynamic scene expansion (casual video capture of scene as background reference), 4D scene recomposition (point cloud editing), and long video inference with memory.
This is the Hugging Face repository containing our evaluation dataset. We provide 110 video-camera pairs to evaluate Vista4D. We select 13 videos from DAVIS and 38 videos from Pexels. We use Pi3 for 4D reconstruction and Grounded SAM 2 to do dynamic pixel segmentation. Then, for each video, we hand-design two to three target cameras for each video using our camera UI.
To download the dataset, from the root directory of the project, run
huggingface-cli download Eyeline-Labs/Vista4D-Eval-Data --repo-type dataset --local-dir eval_data
to download the Vista4D evaluation dataset into ./eval_data/ and then run
tar -xvf eval_data/eval_data.tar -C eval_data/
to extract the contents. It should have the following structure:
eval_data/
metadata.csv
recon_and_seg/ # 4D reconstruction and dynamic mask segmentation
avocado-slice/ # There should be 51 total videos
cameras.npz # Source intrinsics and extrinsics
video.mp4
depths/
00000.exr
...
dynamic_mask/
00000.png
...
sky_mask/ # Sky segmentation (to set them to a large depth)
00000.png
...
[video_name]/
...
...
cameras/
avocado-slice/ # Two to three target cameras per video
close-crane-above.npz
left-front-zoom.npz
[video_name]/
[camera_name].npz
...
...
metadata.csv contains the following information:
name: Name of video-camera pair, in the format[video]_[camera]video: Name of source video, the 4D reconstruction and segmentation can be found ineval_data/recon_and_seg/[video]/camera: Name of camera, corresponds to avideo, can be found ineval_data/cameras/[video]/[camera].npzseed: Randomly-generated fixed seed for evaluationprompt: Prompt for the video-camera pair, usually just the prompt of the source videodynamic: Dynamic keywords used to obtain the segmentation mapdo_sky_seg: Whether the video contains sky (and thus we need to segment it separately)source: Source of the video,davisorpexelsvideo_id: For videos frompexelsonly, original ID of the video on Pexels, full link ishttps://www.pexels.com/video/[video_id]
Instructions on how to use this dataset, model weights, more results, and paper can be found on our project page and GitHub repository.
- Downloads last month
- 186