Improve dataset card: Add task category, paper, project page, and code links

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +105 -91
README.md CHANGED
@@ -1,92 +1,106 @@
1
- ---
2
- license: mit
3
- ---
4
-
5
- # Dataset content
6
-
7
- In the following folders you can find:
8
- - `blender` - our animations with scripts used to generate them
9
- - `configs` - configuration files used during the experimetns shown in our paper
10
- - `data` - contains NeRF Synthetic + Our Assets wit appriopriate `sparse_pc.ply` used for initialization of the system
11
- - `permuto_SDF_models` - meshes generated with [PermutoSDF](https://radualexandru.github.io/permuto_sdf/) that we have used for driving the Gaussians
12
-
13
- Dataset lacks the data for Mip-NeRF 360 dataset which can be downloaded from [here](https://jonbarron.info/mipnerf360/) and also fox which can be found [here](https://github.com/NVlabs/instant-ngp).
14
- Additionally Mip-NeRF 360 shoud be processed with:
15
- ``` bash
16
- # Do this for every dataset in the folder
17
- cd <dataset_folder>
18
- ns-process-data images --data . --output-dir . --skip-colmap --skip-image-processin --colmap-model-path sparse/0
19
- ```
20
-
21
- # Bugs in nerfstudio 1.1.4
22
-
23
- There were a few bugs in nerfstudio we needed to fix in order to train on Mip-NeRF 360 dataset:
24
-
25
- File: nerfstudio/exporter/exporter_utils.py
26
-
27
- ``` python
28
- # Lines 166-172
29
-
30
- # Change from:
31
- if crop_obb is not None:
32
- mask = crop_obb.within(point)
33
- point = point[mask]
34
- rgb = rgb[mask]
35
- view_direction = view_direction[mask]
36
- if normal is not None:
37
- normal = normal[mask]
38
-
39
- # To:
40
- if crop_obb is not None:
41
- mask = crop_obb.within(point)
42
- point = point[mask]
43
- rgb = rgb[mask]
44
- view_direction = view_direction[mask]
45
- if normal is not None:
46
- normal = normal[mask]
47
-
48
- ```
49
-
50
- File: nerfstudio/model_components/ray_generators.py
51
-
52
- ``` python
53
- # Lines 49-50
54
-
55
- # Change from:
56
- y = ray_indices[:, 1] # row indices
57
- x = ray_indices[:, 2] # col indices
58
-
59
- # To:
60
- y = torch.clamp(ray_indices[:, 1], 0, self.image_coords.shape[0] - 1) # row indices
61
- x = torch.clamp(ray_indices[:, 2], 0, self.image_coords.shape[1] - 1) # col indices
62
-
63
- ```
64
-
65
- File: nerfstudio/utils/eval_utils.py
66
-
67
- ``` python
68
- # Line 62
69
-
70
- # Change from:
71
- loaded_state = torch.load(load_path, map_location="cpu")
72
-
73
- # To:
74
- loaded_state = torch.load(load_path, map_location="cpu", weights_only=False)
75
-
76
- ```
77
-
78
- ## 📄 Citation
79
-
80
- If you use our data, please cite:
81
-
82
- ```bibtex
83
- @misc{zielinski2025genie,
84
- title = {GENIE: Gaussian Encoding for Neural Radiance Fields Interactive Editing},
85
- author = {Miko\l{}aj Zieli\'{n}ski and Krzysztof Byrski and Tomasz Szczepanik and Przemys\l{}aw Spurek},
86
- year = {2025},
87
- eprint = {2508.02831},
88
- archivePrefix = {arXiv},
89
- primaryClass = {cs.CV},
90
- url = {https://arxiv.org/abs/2508.02831}
91
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  ```
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-to-3d
5
+ ---
6
+
7
+ # GENIE Dataset
8
+
9
+ This repository contains the data and assets used in the paper [GENIE: Gaussian Encoding for Neural Radiance Fields Interactive Editing](https://huggingface.co/papers/2508.02831), which introduces a hybrid model for interactive editing of Neural Radiance Fields.
10
+
11
+ Project page: [https://mikolajzielinski.github.io/genie.github.io/](https://mikolajzielinski.github.io/genie.github.io/)
12
+
13
+ Code: [https://github.com/MikolajZ/GENIE](https://github.com/MikolajZ/GENIE)
14
+
15
+ <p align="center">
16
+ <img src="https://mikolajzielinski.github.io/genie.github.io/images/teaser.png" alt="GENIE Teaser Image" width="400"/>
17
+ </p>
18
+
19
+ # Dataset content
20
+
21
+ In the following folders you can find:
22
+ - `blender` - our animations with scripts used to generate them
23
+ - `configs` - configuration files used during the experimetns shown in our paper
24
+ - `data` - contains NeRF Synthetic + Our Assets wit appriopriate `sparse_pc.ply` used for initialization of the system
25
+ - `permuto_SDF_models` - meshes generated with [PermutoSDF](https://radualexandru.github.io/permuto_sdf/) that we have used for driving the Gaussians
26
+
27
+ Dataset lacks the data for Mip-NeRF 360 dataset which can be downloaded from [here](https://jonbarron.info/mipnerf360/) and also fox which can be found [here](https://github.com/NVlabs/instant-ngp).
28
+ Additionally Mip-NeRF 360 shoud be processed with:
29
+ ``` bash
30
+ # Do this for every dataset in the folder
31
+ cd <dataset_folder>
32
+ ns-process-data images --data . --output-dir . --skip-colmap --skip-image-processin --colmap-model-path sparse/0
33
+ ```
34
+
35
+ # Bugs in nerfstudio 1.1.4
36
+
37
+ There were a few bugs in nerfstudio we needed to fix in order to train on Mip-NeRF 360 dataset:
38
+
39
+ File: nerfstudio/exporter/exporter_utils.py
40
+
41
+ ``` python
42
+ # Lines 166-172
43
+
44
+ # Change from:
45
+ if crop_obb is not None:
46
+ mask = crop_obb.within(point)
47
+ point = point[mask]
48
+ rgb = rgb[mask]
49
+ view_direction = view_direction[mask]
50
+ if normal is not None:
51
+ normal = normal[mask]
52
+
53
+ # To:
54
+ if crop_obb is not None:
55
+ mask = crop_obb.within(point)
56
+ point = point[mask]
57
+ rgb = rgb[mask]
58
+ view_direction = view_direction[mask]
59
+ if normal is not None:
60
+ normal = normal[mask]
61
+
62
+ ```
63
+
64
+ File: nerfstudio/model_components/ray_generators.py
65
+
66
+ ``` python
67
+ # Lines 49-50
68
+
69
+ # Change from:
70
+ y = ray_indices[:, 1] # row indices
71
+ x = ray_indices[:, 2] # col indices
72
+
73
+ # To:
74
+ y = torch.clamp(ray_indices[:, 1], 0, self.image_coords.shape[0] - 1) # row indices
75
+ x = torch.clamp(ray_indices[:, 2], 0, self.image_coords.shape[1] - 1) # col indices
76
+
77
+ ```
78
+
79
+ File: nerfstudio/utils/eval_utils.py
80
+
81
+ ``` python
82
+ # Line 62
83
+
84
+ # Change from:
85
+ loaded_state = torch.load(load_path, map_location="cpu")
86
+
87
+ # To:
88
+ loaded_state = torch.load(load_path, map_location="cpu", weights_only=False)
89
+
90
+ ```
91
+
92
+ ## 📄 Citation
93
+
94
+ If you use our data, please cite:
95
+
96
+ ```bibtex
97
+ @misc{zielinski2025genie,
98
+ title = {GENIE: Gaussian Encoding for Neural Radiance Fields Interactive Editing},
99
+ author = {Miko\l{}aj Zieli\'{n}ski and Krzysztof Byrski and Tomasz Szczepanik and Przemys\l{}aw Spurek},
100
+ year = {2025},
101
+ eprint = {2508.02831},
102
+ archivePrefix = {arXiv},
103
+ primaryClass = {cs.CV},
104
+ url = {https://arxiv.org/abs/2508.02831}
105
+ }
106
  ```