Yujie0012's picture
Fix original repository URL
7e14456 verified
|
Raw
History Blame Contribute Delete
2.53 kB
metadata
license: other
pretty_name: PointSplat Example Data
task_categories:
  - image-to-3d
tags:
  - pointsplat
  - gaussian-splatting
  - novel-view-synthesis
  - human-rendering
configs:
  - config_name: preview
    data_files:
      - split: preview
        path: viewer/preview.parquet

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
DNA_Rendering_example.zip 16 DNA-Rendering validation scenes, all views for frame 000030 datasets/DNA_Rendering_example
THuman2_0_example.zip 10 THuman2.0 validation scenes, 16 views per scene datasets/THuman2_0_example
viewer/preview.parquet Small preview table for Dataset Viewer Used by Hugging Face only

Download

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

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
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.