nielsr HF Staff commited on
Commit
784f608
·
verified ·
1 Parent(s): fed6673

Add dataset card for DL3DV-Res, including paper link, GitHub, and task categories

Browse files

This PR populates the dataset card for the DL3DV-Res benchmark. It includes:
- A link to the associated paper: "GSFixer: Improving 3D Gaussian Splatting with Reference-Guided Video Diffusion Priors" (https://huggingface.co/papers/2508.09667).
- A link to the official GitHub repository: https://github.com/GVCLab/GSFixer.
- A link to the project page: https://gvclab.github.io/GSFixer/.
- Relevant task categories and tags in the metadata.
- A description of the dataset and sample usage for downloading.

Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - image-to-video
4
+ tags:
5
+ - 3d
6
+ - gaussian-splatting
7
+ - artifact-restoration
8
+ ---
9
+
10
+ # DL3DV-Res Benchmark
11
+
12
+ [**Project Page**](https://gvclab.github.io/GSFixer/) | [**Paper**](https://huggingface.co/papers/2508.09667) | [**GitHub**](https://github.com/GVCLab/GSFixer)
13
+
14
+ DL3DV-Res is a benchmark dataset introduced in the paper "GSFixer: Improving 3D Gaussian Splatting with Reference-Guided Video Diffusion Priors". It contains artifact frames rendered using low-quality 3D Gaussian Splatting (3DGS) from sparse views, and is designed for evaluating 3DGS artifact restoration and sparse-view 3D reconstruction.
15
+
16
+ ## Dataset Usage
17
+
18
+ The DL3DV-Res benchmark data can be downloaded using the following command, as indicated in the official GitHub repository:
19
+
20
+ ```bash
21
+ python download/download_data_hf.py
22
+ ```
23
+
24
+ ## Citation
25
+
26
+ If you find this dataset useful for your research, please consider citing the original paper:
27
+
28
+ ```bibtex
29
+ @article{yin2025gsfixer,
30
+ title={GSFixer: Improving 3D Gaussian Splatting with Reference-Guided Video Diffusion Priors},
31
+ author={Yin, Xingyilang and Zhang, Qi and Chang, Jiahao and Feng, Ying and Fan, Qingnan and Yang, Xi and Pun, Chi-Man and Zhang, Huaqi and Cun, Xiaodong},
32
+ journal={arXiv preprint arXiv:2508.09667},
33
+ year={2025}
34
+ }
35
+ ```