Datasets:
Add dataset card and viewer preview
Browse files- README.md +77 -0
- viewer/preview.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
pretty_name: PointSplat Example Data
|
| 4 |
+
task_categories:
|
| 5 |
+
- image-to-3d
|
| 6 |
+
tags:
|
| 7 |
+
- pointsplat
|
| 8 |
+
- gaussian-splatting
|
| 9 |
+
- novel-view-synthesis
|
| 10 |
+
- human-rendering
|
| 11 |
+
configs:
|
| 12 |
+
- config_name: preview
|
| 13 |
+
data_files:
|
| 14 |
+
- split: preview
|
| 15 |
+
path: viewer/preview.parquet
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# PointSplat Example Data
|
| 19 |
+
|
| 20 |
+
This repository hosts compact example data for running PointSplat inference locally.
|
| 21 |
+
|
| 22 |
+
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:
|
| 23 |
+
|
| 24 |
+
- DNA-Rendering: 16 validation scenes, camera `23`, frame `000030`.
|
| 25 |
+
- THuman2.0: 10 validation scenes, view `000`, frame `2`.
|
| 26 |
+
|
| 27 |
+
## Files
|
| 28 |
+
|
| 29 |
+
| File | Content | Local target path |
|
| 30 |
+
|---|---|---|
|
| 31 |
+
| `DNA_Rendering_example.zip` | 16 DNA-Rendering validation scenes, all views for frame `000030` | `datasets/DNA_Rendering_example` |
|
| 32 |
+
| `THuman2_0_example.zip` | 10 THuman2.0 validation scenes, 16 views per scene | `datasets/THuman2_0_example` |
|
| 33 |
+
| `viewer/preview.parquet` | Small preview table for Dataset Viewer | Used by Hugging Face only |
|
| 34 |
+
|
| 35 |
+
## Download
|
| 36 |
+
|
| 37 |
+
```bash
|
| 38 |
+
mkdir -p datasets
|
| 39 |
+
hf download Yujie0012/PointSplat_example_data DNA_Rendering_example.zip \
|
| 40 |
+
--repo-type dataset \
|
| 41 |
+
--local-dir datasets
|
| 42 |
+
unzip datasets/DNA_Rendering_example.zip -d datasets
|
| 43 |
+
|
| 44 |
+
hf download Yujie0012/PointSplat_example_data THuman2_0_example.zip \
|
| 45 |
+
--repo-type dataset \
|
| 46 |
+
--local-dir datasets
|
| 47 |
+
unzip datasets/THuman2_0_example.zip -d datasets
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
## Expected Layout
|
| 51 |
+
|
| 52 |
+
```text
|
| 53 |
+
datasets/DNA_Rendering_example/
|
| 54 |
+
├── validation_index.json
|
| 55 |
+
├── scenes/<scene_id>/
|
| 56 |
+
│ ├── transforms.json
|
| 57 |
+
│ └── images/<view_id>/000030.webp
|
| 58 |
+
└── masks/<scene_id>/fmasks/<view_id>/000030.png
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
```text
|
| 62 |
+
datasets/THuman2_0_example/
|
| 63 |
+
└── val/
|
| 64 |
+
├── img/<scene_id>_<view_id>/2.jpg
|
| 65 |
+
├── mask/<scene_id>_<view_id>/2.png
|
| 66 |
+
└── parm/<scene_id>_<view_id>/
|
| 67 |
+
├── 2_intrinsic.npy
|
| 68 |
+
└── 2_extrinsic.npy
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
## Usage
|
| 72 |
+
|
| 73 |
+
Download `pointsplat_mixed.pt` from [`Yujie0012/PointSplat_pretrained_weights`](https://huggingface.co/Yujie0012/PointSplat_pretrained_weights), then follow the inference commands in the [PointSplat repository](https://github.com/Yujie-G/PointSplat).
|
| 74 |
+
|
| 75 |
+
## License and Terms
|
| 76 |
+
|
| 77 |
+
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.
|
viewer/preview.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62eefa9e9d1b8018ecbaf38ba65d51bfea65ac945d441d16f4c2b5b9a3bdd942
|
| 3 |
+
size 2903532
|