Add task category and paper link to dataset card

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +18 -14
README.md CHANGED
@@ -1,5 +1,9 @@
1
  ---
2
  license: cc-by-nc-4.0
 
 
 
 
3
  tags:
4
  - Novel View Synthesis
5
  - NeRF
@@ -7,16 +11,15 @@ tags:
7
  - 3D Vision
8
  - Diffusion Models
9
  - Image Restoration
10
- - Image-to-Image
11
  - Fixer
12
  - Distractor
13
- size_categories:
14
- - 100B<n<1T
15
  ---
16
 
17
- # DF3DV-1K
18
 
19
- The dataset provides one thousand scenes with masked clean and cluttered images for distractor-free 3D vision research.
 
 
20
 
21
  ## Directory Structure
22
 
@@ -84,7 +87,7 @@ The dataset provides one thousand scenes with masked clean and cluttered images
84
 
85
  ## Download Instruction
86
 
87
- ```
88
  # Install the Hugging Face CLI
89
  pip install -U "huggingface_hub[cli]"
90
 
@@ -92,26 +95,27 @@ pip install -U "huggingface_hub[cli]"
92
  hf auth login
93
 
94
  # Download whole dataset
95
- # Example
96
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K
97
 
98
  # Download DF3DV-1K*
99
- # Example
100
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K --include "DF3DV-1K-Star/*"
101
 
102
  # Download DF3DV-41
103
- # Example
104
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K --include "DF3DV-41/*"
105
 
106
  # Download specific chunk
107
- # Example
108
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K --include "DF3DV-1K-Star/0000/*"
109
 
110
  # Download everything except specific files
111
- # Example
112
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K --exclude "Mask.zip"
113
  ```
114
 
115
- ## More Information
116
-
117
- Please refer this [repo](https://github.com/johnnylu305/DF3DV) for more details.
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
+ task_categories:
4
+ - image-to-image
5
+ size_categories:
6
+ - 100B<n<1T
7
  tags:
8
  - Novel View Synthesis
9
  - NeRF
 
11
  - 3D Vision
12
  - Diffusion Models
13
  - Image Restoration
 
14
  - Fixer
15
  - Distractor
 
 
16
  ---
17
 
18
+ # DF3DV-1K: A Large-Scale Dataset and Benchmark for Distractor-Free Novel View Synthesis
19
 
20
+ [**Project Page**](https://johnnylu305.github.io/df3dv1k_web/) | [**Paper**](https://huggingface.co/papers/2604.13416) | [**GitHub**](https://github.com/johnnylu305/DF3DV)
21
+
22
+ DF3DV-1K is a large-scale real-world dataset comprising 1,048 scenes, each providing clean and cluttered image sets for benchmarking distractor-free radiance fields. In total, the dataset contains 89,924 images captured using consumer cameras to mimic casual capture, spanning 128 distractor types and 161 scene themes across indoor and outdoor environments.
23
 
24
  ## Directory Structure
25
 
 
87
 
88
  ## Download Instruction
89
 
90
+ ```bash
91
  # Install the Hugging Face CLI
92
  pip install -U "huggingface_hub[cli]"
93
 
 
95
  hf auth login
96
 
97
  # Download whole dataset
 
98
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K
99
 
100
  # Download DF3DV-1K*
 
101
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K --include "DF3DV-1K-Star/*"
102
 
103
  # Download DF3DV-41
 
104
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K --include "DF3DV-41/*"
105
 
106
  # Download specific chunk
 
107
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K --include "DF3DV-1K-Star/0000/*"
108
 
109
  # Download everything except specific files
 
110
  hf download ChengYou305/DF3DV-1K --repo-type dataset --local-dir DF3DV-1K --exclude "Mask.zip"
111
  ```
112
 
113
+ ## Citation
114
+ ```bibtex
115
+ @article{lu2026df3dv,
116
+ title={DF3DV-1K: A Large-Scale Dataset and Benchmark for Distractor-Free Novel View Synthesis},
117
+ author={Lu, Cheng-You and Hung, Yi-Shan and Chi, Wei-Ling and Wang, Hao-Ping and Tsai, Charlie Li-Ting and Chang, Yu-Cheng and Liu, Yu-Lun and Do, Thomas and Lin, Chin-Teng},
118
+ journal={arXiv preprint arXiv:2604.13416},
119
+ year={2026}
120
+ }
121
+ ```