CoolFace
Datasetpublic

Yujie0012/PointSplat_example_data

PointSplat Example Data This repository hosts compact example data for running PointSplat inference locally. The zip archives are the recommended download format for reproducing the commands in the PointSplat README. The Dataset Viewer shows a small preview split with one fixed camera per scene: DNA-Rendering: 16 validation scenes, camera 23, frame 000030. THuman2.0: 10 validation scenes, view 000, frame 2. Files File Content Local target path… See the full description on the dataset page: https://huggingface.co/datasets/Yujie0012/PointSplat_example_data.

sourceHugging Faceotherupdated 3mo agoView on Hugging Face
0likes62downloads
Dataset Card

PointSplat Example Data

This repository hosts compact example data for running PointSplat inference locally.

The zip archives are the recommended download format for reproducing the commands in the PointSplat README. The Dataset Viewer shows a small preview split with one fixed camera per scene:

  • DNA-Rendering: 16 validation scenes, camera 23, frame 000030.
  • THuman2.0: 10 validation scenes, view 000, frame 2.

Files

FileContentLocal target path
DNA_Rendering_example.zip16 DNA-Rendering validation scenes, all views for frame 000030datasets/DNA_Rendering_example
THuman2_0_example.zip10 THuman2.0 validation scenes, 16 views per scenedatasets/THuman2_0_example
viewer/preview.parquetSmall preview table for Dataset ViewerUsed by Hugging Face only

Download

bash
mkdir -p datasets
hf download Yujie0012/PointSplat_example_data DNA_Rendering_example.zip \
  --repo-type dataset \
  --local-dir datasets
unzip datasets/DNA_Rendering_example.zip -d datasets

hf download Yujie0012/PointSplat_example_data THuman2_0_example.zip \
  --repo-type dataset \
  --local-dir datasets
unzip datasets/THuman2_0_example.zip -d datasets

Expected Layout

text
datasets/DNA_Rendering_example/
├── validation_index.json
├── scenes/<scene_id>/
│   ├── transforms.json
│   └── images/<view_id>/000030.webp
└── masks/<scene_id>/fmasks/<view_id>/000030.png
text
datasets/THuman2_0_example/
└── val/
    ├── img/<scene_id>_<view_id>/2.jpg
    ├── mask/<scene_id>_<view_id>/2.png
    └── parm/<scene_id>_<view_id>/
        ├── 2_intrinsic.npy
        └── 2_extrinsic.npy

Usage

Download pointsplat_mixed.pt from `Yujie0012/PointSplat_pretrained_weights`, then follow the inference commands in the original PointSplat repository.

License and Terms

The example data is derived from the upstream DNA-Rendering and THuman2.0 datasets. Please follow the original dataset licenses and terms of use. This repository is intended for lightweight inference verification and preview only.