Add dataset card, paper link and task categories
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,55 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-to-3d
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# G4Splat: Geometry-Guided Gaussian Splatting with Generative Prior
|
| 8 |
+
|
| 9 |
+
[**Project page**](https://dali-jack.github.io/g4splat-web/) | [**Paper**](https://huggingface.co/papers/2510.12099) | [**Code**](https://github.com/DaLi-Jack/G4Splat)
|
| 10 |
+
|
| 11 |
+
This repository contains the preprocessed data for **G4Splat**, a method presented at ICLR 2026 that integrates accurate geometry guidance with generative priors to enhance 3D scene reconstruction. G4Splat improves both geometric fidelity and appearance quality in observed and unobserved regions.
|
| 12 |
+
|
| 13 |
+
## Dataset Description
|
| 14 |
+
The dataset includes preprocessed scans for training and evaluating G4Splat on several benchmarks:
|
| 15 |
+
- **Replica**
|
| 16 |
+
- **ScanNet++**
|
| 17 |
+
- **DeepBlending**
|
| 18 |
+
- **DenseView**
|
| 19 |
+
|
| 20 |
+
## Usage
|
| 21 |
+
|
| 22 |
+
### Data Structure
|
| 23 |
+
To use this data with the official [G4Splat implementation](https://github.com/DaLi-Jack/G4Splat), please download and unzip the files into a `data` folder following this structure:
|
| 24 |
+
|
| 25 |
+
```bash
|
| 26 |
+
βββ G4Splat
|
| 27 |
+
βββ data
|
| 28 |
+
βββ replica
|
| 29 |
+
βββ scan ...
|
| 30 |
+
βββ scannetpp
|
| 31 |
+
βββ scan ...
|
| 32 |
+
βββ deepblending
|
| 33 |
+
βββ scan ...
|
| 34 |
+
βββ denseview
|
| 35 |
+
βββ scan1
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
### Training Command
|
| 39 |
+
Once the data is organized, you can run training and evaluation using the following command:
|
| 40 |
+
|
| 41 |
+
```bash
|
| 42 |
+
# Tested on A100 80GB GPU. You can add "--use_downsample_gaussians" to run on a 3090 24GB GPU.
|
| 43 |
+
python train.py -s data/DATASET_NAME/SCAN_ID -o output/DATASET_NAME/SCAN_ID --sfm_config posed --use_view_config --config_view_num 5 --select_inpaint_num 10 --tetra_downsample_ratio 0.25
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
## Citation
|
| 47 |
+
|
| 48 |
+
```bibtex
|
| 49 |
+
@inproceedings{ni2026g4splat,
|
| 50 |
+
title={G4Splat: Geometry-Guided Gaussian Splatting with Generative Prior},
|
| 51 |
+
author={Ni, Junfeng and Chen, Yixin and Yang, Zhifei and Liu, Yu and Lu, Ruijie and Zhu, Song-Chun and Huang, Siyuan},
|
| 52 |
+
booktitle={The Fourteenth International Conference on Learning Representations},
|
| 53 |
+
year={2026}
|
| 54 |
+
}
|
| 55 |
+
```
|