Datasets:
File size: 2,530 Bytes
326d1c5 7e14456 326d1c5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | ---
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
```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`](https://huggingface.co/Yujie0012/PointSplat_pretrained_weights), then follow the inference commands in the original [PointSplat repository](https://github.com/zju3dv/PointSplat).
## 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.
|