MikolajZ commited on
Commit
f8c1130
·
1 Parent(s): 2edc208

Added configs + missing data + README.md update

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +74 -1
  2. blender/fox_nodding/Fox_nodding.blend +3 -0
  3. blender/fox_nodding/script.py +50 -0
  4. blender/rug_cup/Rug_cup.blend +3 -0
  5. blender/rug_cup/script.py +50 -0
  6. configs/bicycle.yml +195 -0
  7. configs/bonsai.yml +195 -0
  8. configs/chair.yml +186 -0
  9. configs/counter.yml +195 -0
  10. configs/drums.yml +186 -0
  11. configs/ficus.yml +186 -0
  12. configs/flowers.yml +195 -0
  13. configs/fox_nodding.yml +195 -0
  14. configs/garden.yml +195 -0
  15. configs/hotdog.yml +186 -0
  16. configs/kitchen.yml +195 -0
  17. configs/lego.yml +186 -0
  18. configs/materials.yml +186 -0
  19. configs/mic.yml +186 -0
  20. configs/pillow_duck.yml +189 -0
  21. configs/pirate_flag.yml +189 -0
  22. configs/room.yml +195 -0
  23. configs/rug_cup.yml +187 -0
  24. configs/ship.yml +186 -0
  25. configs/stump.yml +195 -0
  26. configs/treehill.yml +195 -0
  27. data/pirate_flag/train/transforms.json +0 -3005
  28. data/rug_cup/.DS_Store +0 -0
  29. data/rug_cup/sparse_pc.ply +3 -0
  30. data/rug_cup/test/r_0.png +3 -0
  31. data/rug_cup/test/r_0_depth_0001.png +3 -0
  32. data/rug_cup/test/r_0_normal_0001.png +3 -0
  33. data/rug_cup/test/r_1.png +3 -0
  34. data/rug_cup/test/r_10.png +3 -0
  35. data/rug_cup/test/r_100.png +3 -0
  36. data/rug_cup/test/r_100_depth_0001.png +3 -0
  37. data/rug_cup/test/r_100_normal_0001.png +3 -0
  38. data/rug_cup/test/r_101.png +3 -0
  39. data/rug_cup/test/r_101_depth_0001.png +3 -0
  40. data/rug_cup/test/r_101_normal_0001.png +3 -0
  41. data/rug_cup/test/r_102.png +3 -0
  42. data/rug_cup/test/r_102_depth_0001.png +3 -0
  43. data/rug_cup/test/r_102_normal_0001.png +3 -0
  44. data/rug_cup/test/r_103.png +3 -0
  45. data/rug_cup/test/r_103_depth_0001.png +3 -0
  46. data/rug_cup/test/r_103_normal_0001.png +3 -0
  47. data/rug_cup/test/r_104.png +3 -0
  48. data/rug_cup/test/r_104_depth_0001.png +3 -0
  49. data/rug_cup/test/r_104_normal_0001.png +3 -0
  50. data/rug_cup/test/r_105.png +3 -0
README.md CHANGED
@@ -2,9 +2,82 @@
2
  license: mit
3
  ---
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ## 📄 Citation
6
 
7
- If you use this dataset, please cite:
8
 
9
  ```bibtex
10
  @misc{zielinski2025genie,
 
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,
blender/fox_nodding/Fox_nodding.blend ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f7ac962fc4c340dc44a450a2e858b30afae989b879f45502710ca196f13cd6b
3
+ size 10249373
blender/fox_nodding/script.py ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import bpy
2
+ import os
3
+
4
+ # Set output directory
5
+ output_dir = "blender/fox_nodding/plys" # Change this!
6
+
7
+ # Ensure the output directory exists
8
+ if not os.path.exists(output_dir):
9
+ os.makedirs(output_dir)
10
+
11
+ # Set the frame range
12
+ start_frame = bpy.context.scene.frame_start
13
+ end_frame = bpy.context.scene.frame_end
14
+
15
+ # Name of the object to export
16
+ object_names = ["Fox"]
17
+
18
+ # Deselect everything
19
+ bpy.ops.object.select_all(action='DESELECT')
20
+
21
+ # Ensure it is selected and active
22
+ for name in object_names:
23
+ obj = bpy.data.objects[name]
24
+ obj.select_set(True)
25
+ bpy.context.view_layer.objects.active = obj
26
+
27
+ # Loop through each frame
28
+ for frame in range(start_frame, end_frame + 1):
29
+ bpy.context.scene.frame_set(frame)
30
+ bpy.context.view_layer.update() # Ensure simulation is evaluated
31
+
32
+ # Export to .obj
33
+ filename = f"{(frame - 1):05d}.ply"
34
+ filepath = os.path.join(output_dir, filename)
35
+
36
+ bpy.ops.wm.ply_export(
37
+ filepath=filepath,
38
+ apply_modifiers=True,
39
+ export_selected_objects=True,
40
+ export_normals=True,
41
+ export_uv=True,
42
+ export_colors='NONE', # options: 'NONE', 'SRGB', 'LINEAR'
43
+ export_attributes=False,
44
+ export_triangulated_mesh=False,
45
+ ascii_format=True, # Set to False for binary PLY
46
+ forward_axis='Y',
47
+ up_axis='Z'
48
+ )
49
+
50
+ print(f"Exported frame {frame} to {filepath}")
blender/rug_cup/Rug_cup.blend ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a0948b4f2097e093a305038a242bda7957dbc4817252fe59d5fd37026b971e8
3
+ size 9836555
blender/rug_cup/script.py ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import bpy
2
+ import os
3
+
4
+ # Set output directory
5
+ output_dir = "blender/rug_cup/plys" # Change this!
6
+
7
+ # Ensure the output directory exists
8
+ if not os.path.exists(output_dir):
9
+ os.makedirs(output_dir)
10
+
11
+ # Set the frame range
12
+ start_frame = bpy.context.scene.frame_start
13
+ end_frame = bpy.context.scene.frame_end
14
+
15
+ # Name of the object to export
16
+ object_names = ["Fish_Cup", "Rug"]
17
+
18
+ # Deselect everything
19
+ bpy.ops.object.select_all(action='DESELECT')
20
+
21
+ # Ensure it is selected and active
22
+ for name in object_names:
23
+ obj = bpy.data.objects[name]
24
+ obj.select_set(True)
25
+ bpy.context.view_layer.objects.active = obj
26
+
27
+ # Loop through each frame
28
+ for frame in range(start_frame, end_frame + 1):
29
+ bpy.context.scene.frame_set(frame)
30
+ bpy.context.view_layer.update() # Ensure simulation is evaluated
31
+
32
+ # Export to .obj
33
+ filename = f"{(frame - 1):05d}.ply"
34
+ filepath = os.path.join(output_dir, filename)
35
+
36
+ bpy.ops.wm.ply_export(
37
+ filepath=filepath,
38
+ apply_modifiers=True,
39
+ export_selected_objects=True,
40
+ export_normals=True,
41
+ export_uv=True,
42
+ export_colors='NONE', # options: 'NONE', 'SRGB', 'LINEAR'
43
+ export_attributes=False,
44
+ export_triangulated_mesh=False,
45
+ ascii_format=True, # Set to False for binary PLY
46
+ forward_axis='Y',
47
+ up_axis='Z'
48
+ )
49
+
50
+ print(f"Exported frame {frame} to {filepath}")
configs/bicycle.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - 360_v2
6
+ - bicycle
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: bicycle
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 0
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 1
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
102
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
103
+ auto_scale_poses: true
104
+ center_method: poses
105
+ data: !!python/object/apply:pathlib.PosixPath []
106
+ depth_unit_scale_factor: 0.001
107
+ downscale_factor: 4
108
+ eval_interval: 8
109
+ eval_mode: fraction
110
+ load_3D_points: true
111
+ mask_color: null
112
+ orientation_method: up
113
+ scale_factor: 1.0
114
+ scene_scale: 1.0
115
+ train_split_fraction: 0.9
116
+ eval_image_indices: !!python/tuple
117
+ - 0
118
+ eval_num_images_to_sample_from: -1
119
+ eval_num_rays_per_batch: 4096
120
+ eval_num_times_to_repeat_images: -1
121
+ images_on_gpu: false
122
+ masks_on_gpu: false
123
+ patch_size: 1
124
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
125
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
126
+ fisheye_crop_radius: null
127
+ ignore_mask: false
128
+ is_equirectangular: false
129
+ keep_full_image: false
130
+ max_num_iterations: 100
131
+ num_rays_per_batch: 4096
132
+ rejection_sample_mask: false
133
+ train_num_images_to_sample_from: -1
134
+ train_num_rays_per_batch: 4096
135
+ train_num_times_to_repeat_images: -1
136
+ max_num_samples_per_ray: 1024
137
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
138
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
139
+ alpha_thre: 0.0
140
+ appearance_embedding_dim: 32
141
+ background_color: random
142
+ collider_params: null
143
+ cone_angle: 0.00390625
144
+ densify: true
145
+ disable_scene_contraction: false
146
+ enable_collider: false
147
+ eval_num_rays_per_chunk: 8192
148
+ far_plane: 1000.0
149
+ grid_resolution: 128
150
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
151
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
152
+ chi_squared_radius: 2.0
153
+ device: cuda
154
+ n_neighbours: 16
155
+ loss_coefficients:
156
+ rgb_loss_coarse: 1.0
157
+ rgb_loss_fine: 1.0
158
+ max_gb: 20
159
+ near_plane: 0.0
160
+ prompt: null
161
+ prune: true
162
+ render_step_size: 0.005
163
+ unfreeze_means: true
164
+ use_appearance_embedding: false
165
+ use_gradient_scaling: true
166
+ target_num_samples: 262144
167
+ project_name: nerfstudio-project
168
+ prompt: null
169
+ pruning_interval: 1000
170
+ pruning_start_step: 1000
171
+ pruning_stop_step: 15000
172
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
173
+ - nerfstudio_models
174
+ save_only_latest_checkpoint: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: test
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
configs/bonsai.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - 360_v2
6
+ - bonsai
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: bonsai
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
102
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
103
+ auto_scale_poses: true
104
+ center_method: poses
105
+ data: !!python/object/apply:pathlib.PosixPath []
106
+ depth_unit_scale_factor: 0.001
107
+ downscale_factor: 4
108
+ eval_interval: 8
109
+ eval_mode: fraction
110
+ load_3D_points: true
111
+ mask_color: null
112
+ orientation_method: up
113
+ scale_factor: 1.0
114
+ scene_scale: 1.0
115
+ train_split_fraction: 0.9
116
+ eval_image_indices: !!python/tuple
117
+ - 0
118
+ eval_num_images_to_sample_from: -1
119
+ eval_num_rays_per_batch: 4096
120
+ eval_num_times_to_repeat_images: -1
121
+ images_on_gpu: false
122
+ masks_on_gpu: false
123
+ patch_size: 1
124
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
125
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
126
+ fisheye_crop_radius: null
127
+ ignore_mask: false
128
+ is_equirectangular: false
129
+ keep_full_image: false
130
+ max_num_iterations: 100
131
+ num_rays_per_batch: 4096
132
+ rejection_sample_mask: false
133
+ train_num_images_to_sample_from: -1
134
+ train_num_rays_per_batch: 4096
135
+ train_num_times_to_repeat_images: -1
136
+ max_num_samples_per_ray: 1024
137
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
138
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
139
+ alpha_thre: 0.0
140
+ appearance_embedding_dim: 32
141
+ background_color: random
142
+ collider_params: null
143
+ cone_angle: 0.00390625
144
+ densify: true
145
+ disable_scene_contraction: false
146
+ enable_collider: false
147
+ eval_num_rays_per_chunk: 8192
148
+ far_plane: 1000.0
149
+ grid_resolution: 128
150
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
151
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
152
+ chi_squared_radius: 2.0
153
+ device: cuda
154
+ n_neighbours: 16
155
+ loss_coefficients:
156
+ rgb_loss_coarse: 1.0
157
+ rgb_loss_fine: 1.0
158
+ max_gb: 20
159
+ near_plane: 0.0
160
+ prompt: null
161
+ prune: true
162
+ render_step_size: 0.005
163
+ unfreeze_means: true
164
+ use_appearance_embedding: false
165
+ use_gradient_scaling: true
166
+ target_num_samples: 262144
167
+ project_name: nerfstudio-project
168
+ prompt: null
169
+ pruning_interval: 1000
170
+ pruning_start_step: 1000
171
+ pruning_stop_step: 15000
172
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
173
+ - nerfstudio_models
174
+ save_only_latest_checkpoint: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: open_scenes_baseline
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
configs/chair.yml ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - chair
7
+ denisification_interval: 200
8
+ densification_start_step: 1000
9
+ densification_stop_step: 8000
10
+ experiment_name: chair
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 10
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 10
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
101
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
102
+ alpha_color: white
103
+ data: !!python/object/apply:pathlib.PosixPath
104
+ - data
105
+ - blender
106
+ - lego
107
+ ply_path: null
108
+ scale_factor: 1.0
109
+ eval_image_indices: !!python/tuple
110
+ - 0
111
+ eval_num_images_to_sample_from: -1
112
+ eval_num_rays_per_batch: 4096
113
+ eval_num_times_to_repeat_images: -1
114
+ images_on_gpu: false
115
+ masks_on_gpu: false
116
+ patch_size: 1
117
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
118
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
119
+ fisheye_crop_radius: null
120
+ ignore_mask: false
121
+ is_equirectangular: false
122
+ keep_full_image: false
123
+ max_num_iterations: 100
124
+ num_rays_per_batch: 4096
125
+ rejection_sample_mask: false
126
+ train_num_images_to_sample_from: -1
127
+ train_num_rays_per_batch: 4096
128
+ train_num_times_to_repeat_images: -1
129
+ max_num_samples_per_ray: 1024
130
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
131
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
132
+ alpha_thre: 0.0
133
+ appearance_embedding_dim: 32
134
+ background_color: white
135
+ collider_params: null
136
+ cone_angle: 0.0
137
+ densify: true
138
+ disable_scene_contraction: true
139
+ enable_collider: false
140
+ eval_num_rays_per_chunk: 8192
141
+ far_plane: 6.0
142
+ grid_resolution: 128
143
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
144
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
145
+ chi_squared_radius: 2.0
146
+ device: cuda
147
+ n_neighbours: 32
148
+ loss_coefficients:
149
+ rgb_loss_coarse: 1.0
150
+ rgb_loss_fine: 1.0
151
+ max_gb: 20
152
+ near_plane: 2.0
153
+ prompt: null
154
+ prune: true
155
+ render_step_size: 0.005
156
+ use_appearance_embedding: false
157
+ use_gradient_scaling: true
158
+ target_num_samples: 262144
159
+ project_name: nerfstudio-project
160
+ prompt: null
161
+ pruning_interval: 1000
162
+ pruning_start_step: 1000
163
+ pruning_stop_step: 15000
164
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
165
+ - nerfstudio_models
166
+ save_only_latest_checkpoint: true
167
+ steps_per_eval_all_images: 25000
168
+ steps_per_eval_batch: 500
169
+ steps_per_eval_image: 500
170
+ steps_per_save: 100
171
+ timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune
172
+ use_grad_scaler: false
173
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
174
+ camera_frustum_scale: 0.1
175
+ default_composite_depth: true
176
+ image_format: jpeg
177
+ jpeg_quality: 75
178
+ make_share_url: false
179
+ max_num_display_images: 512
180
+ num_rays_per_chunk: 4096
181
+ quit_on_train_completion: true
182
+ relative_log_filename: viewer_log_filename.txt
183
+ websocket_host: 0.0.0.0
184
+ websocket_port: null
185
+ websocket_port_default: 7007
186
+ vis: viewer
configs/counter.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - 360_v2
6
+ - counter
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: counter
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
102
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
103
+ auto_scale_poses: true
104
+ center_method: poses
105
+ data: !!python/object/apply:pathlib.PosixPath []
106
+ depth_unit_scale_factor: 0.001
107
+ downscale_factor: 4
108
+ eval_interval: 8
109
+ eval_mode: fraction
110
+ load_3D_points: true
111
+ mask_color: null
112
+ orientation_method: up
113
+ scale_factor: 1.0
114
+ scene_scale: 1.0
115
+ train_split_fraction: 0.9
116
+ eval_image_indices: !!python/tuple
117
+ - 0
118
+ eval_num_images_to_sample_from: -1
119
+ eval_num_rays_per_batch: 4096
120
+ eval_num_times_to_repeat_images: -1
121
+ images_on_gpu: false
122
+ masks_on_gpu: false
123
+ patch_size: 1
124
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
125
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
126
+ fisheye_crop_radius: null
127
+ ignore_mask: false
128
+ is_equirectangular: false
129
+ keep_full_image: false
130
+ max_num_iterations: 100
131
+ num_rays_per_batch: 4096
132
+ rejection_sample_mask: false
133
+ train_num_images_to_sample_from: -1
134
+ train_num_rays_per_batch: 4096
135
+ train_num_times_to_repeat_images: -1
136
+ max_num_samples_per_ray: 1024
137
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
138
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
139
+ alpha_thre: 0.0
140
+ appearance_embedding_dim: 32
141
+ background_color: random
142
+ collider_params: null
143
+ cone_angle: 0.00390625
144
+ densify: true
145
+ disable_scene_contraction: false
146
+ enable_collider: false
147
+ eval_num_rays_per_chunk: 8192
148
+ far_plane: 1000.0
149
+ grid_resolution: 128
150
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
151
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
152
+ chi_squared_radius: 2.0
153
+ device: cuda
154
+ n_neighbours: 16
155
+ loss_coefficients:
156
+ rgb_loss_coarse: 1.0
157
+ rgb_loss_fine: 1.0
158
+ max_gb: 20
159
+ near_plane: 0.0
160
+ prompt: null
161
+ prune: true
162
+ render_step_size: 0.005
163
+ unfreeze_means: true
164
+ use_appearance_embedding: false
165
+ use_gradient_scaling: true
166
+ target_num_samples: 262144
167
+ project_name: nerfstudio-project
168
+ prompt: null
169
+ pruning_interval: 1000
170
+ pruning_start_step: 1000
171
+ pruning_stop_step: 15000
172
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
173
+ - nerfstudio_models
174
+ save_only_latest_checkpoint: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: open_scenes_baseline
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
configs/drums.yml ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - drums
7
+ denisification_interval: 200
8
+ densification_start_step: 1000
9
+ densification_stop_step: 8000
10
+ experiment_name: drums
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 10
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 10
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
101
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
102
+ alpha_color: white
103
+ data: !!python/object/apply:pathlib.PosixPath
104
+ - data
105
+ - blender
106
+ - lego
107
+ ply_path: null
108
+ scale_factor: 1.0
109
+ eval_image_indices: !!python/tuple
110
+ - 0
111
+ eval_num_images_to_sample_from: -1
112
+ eval_num_rays_per_batch: 4096
113
+ eval_num_times_to_repeat_images: -1
114
+ images_on_gpu: false
115
+ masks_on_gpu: false
116
+ patch_size: 1
117
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
118
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
119
+ fisheye_crop_radius: null
120
+ ignore_mask: false
121
+ is_equirectangular: false
122
+ keep_full_image: false
123
+ max_num_iterations: 100
124
+ num_rays_per_batch: 4096
125
+ rejection_sample_mask: false
126
+ train_num_images_to_sample_from: -1
127
+ train_num_rays_per_batch: 4096
128
+ train_num_times_to_repeat_images: -1
129
+ max_num_samples_per_ray: 1024
130
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
131
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
132
+ alpha_thre: 0.0
133
+ appearance_embedding_dim: 32
134
+ background_color: white
135
+ collider_params: null
136
+ cone_angle: 0.0
137
+ densify: true
138
+ disable_scene_contraction: true
139
+ enable_collider: false
140
+ eval_num_rays_per_chunk: 8192
141
+ far_plane: 6.0
142
+ grid_resolution: 128
143
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
144
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
145
+ chi_squared_radius: 2.0
146
+ device: cuda
147
+ n_neighbours: 32
148
+ loss_coefficients:
149
+ rgb_loss_coarse: 1.0
150
+ rgb_loss_fine: 1.0
151
+ max_gb: 20
152
+ near_plane: 2.0
153
+ prompt: null
154
+ prune: true
155
+ render_step_size: 0.005
156
+ use_appearance_embedding: false
157
+ use_gradient_scaling: true
158
+ target_num_samples: 262144
159
+ project_name: nerfstudio-project
160
+ prompt: null
161
+ pruning_interval: 1000
162
+ pruning_start_step: 1000
163
+ pruning_stop_step: 15000
164
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
165
+ - nerfstudio_models
166
+ save_only_latest_checkpoint: true
167
+ steps_per_eval_all_images: 25000
168
+ steps_per_eval_batch: 500
169
+ steps_per_eval_image: 500
170
+ steps_per_save: 100
171
+ timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune
172
+ use_grad_scaler: false
173
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
174
+ camera_frustum_scale: 0.1
175
+ default_composite_depth: true
176
+ image_format: jpeg
177
+ jpeg_quality: 75
178
+ make_share_url: false
179
+ max_num_display_images: 512
180
+ num_rays_per_chunk: 4096
181
+ quit_on_train_completion: true
182
+ relative_log_filename: viewer_log_filename.txt
183
+ websocket_host: 0.0.0.0
184
+ websocket_port: null
185
+ websocket_port_default: 7007
186
+ vis: viewer
configs/ficus.yml ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - ficus
7
+ denisification_interval: 200
8
+ densification_start_step: 1000
9
+ densification_stop_step: 8000
10
+ experiment_name: ficus
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 10
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 10
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
101
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
102
+ alpha_color: white
103
+ data: !!python/object/apply:pathlib.PosixPath
104
+ - data
105
+ - blender
106
+ - lego
107
+ ply_path: null
108
+ scale_factor: 1.0
109
+ eval_image_indices: !!python/tuple
110
+ - 0
111
+ eval_num_images_to_sample_from: -1
112
+ eval_num_rays_per_batch: 4096
113
+ eval_num_times_to_repeat_images: -1
114
+ images_on_gpu: false
115
+ masks_on_gpu: false
116
+ patch_size: 1
117
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
118
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
119
+ fisheye_crop_radius: null
120
+ ignore_mask: false
121
+ is_equirectangular: false
122
+ keep_full_image: false
123
+ max_num_iterations: 100
124
+ num_rays_per_batch: 4096
125
+ rejection_sample_mask: false
126
+ train_num_images_to_sample_from: -1
127
+ train_num_rays_per_batch: 4096
128
+ train_num_times_to_repeat_images: -1
129
+ max_num_samples_per_ray: 1024
130
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
131
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
132
+ alpha_thre: 0.0
133
+ appearance_embedding_dim: 32
134
+ background_color: white
135
+ collider_params: null
136
+ cone_angle: 0.0
137
+ densify: true
138
+ disable_scene_contraction: true
139
+ enable_collider: false
140
+ eval_num_rays_per_chunk: 8192
141
+ far_plane: 6.0
142
+ grid_resolution: 128
143
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
144
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
145
+ chi_squared_radius: 2.0
146
+ device: cuda
147
+ n_neighbours: 32
148
+ loss_coefficients:
149
+ rgb_loss_coarse: 1.0
150
+ rgb_loss_fine: 1.0
151
+ max_gb: 20
152
+ near_plane: 2.0
153
+ prompt: null
154
+ prune: true
155
+ render_step_size: 0.005
156
+ use_appearance_embedding: false
157
+ use_gradient_scaling: true
158
+ target_num_samples: 262144
159
+ project_name: nerfstudio-project
160
+ prompt: null
161
+ pruning_interval: 1000
162
+ pruning_start_step: 1000
163
+ pruning_stop_step: 15000
164
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
165
+ - nerfstudio_models
166
+ save_only_latest_checkpoint: true
167
+ steps_per_eval_all_images: 25000
168
+ steps_per_eval_batch: 500
169
+ steps_per_eval_image: 500
170
+ steps_per_save: 100
171
+ timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune
172
+ use_grad_scaler: false
173
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
174
+ camera_frustum_scale: 0.1
175
+ default_composite_depth: true
176
+ image_format: jpeg
177
+ jpeg_quality: 75
178
+ make_share_url: false
179
+ max_num_display_images: 512
180
+ num_rays_per_chunk: 4096
181
+ quit_on_train_completion: true
182
+ relative_log_filename: viewer_log_filename.txt
183
+ websocket_host: 0.0.0.0
184
+ websocket_port: null
185
+ websocket_port_default: 7007
186
+ vis: viewer
configs/flowers.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - 360_v2
6
+ - flowers
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: flowers
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
102
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
103
+ auto_scale_poses: true
104
+ center_method: poses
105
+ data: !!python/object/apply:pathlib.PosixPath []
106
+ depth_unit_scale_factor: 0.001
107
+ downscale_factor: 4
108
+ eval_interval: 8
109
+ eval_mode: fraction
110
+ load_3D_points: true
111
+ mask_color: null
112
+ orientation_method: up
113
+ scale_factor: 1.0
114
+ scene_scale: 1.0
115
+ train_split_fraction: 0.9
116
+ eval_image_indices: !!python/tuple
117
+ - 0
118
+ eval_num_images_to_sample_from: -1
119
+ eval_num_rays_per_batch: 4096
120
+ eval_num_times_to_repeat_images: -1
121
+ images_on_gpu: false
122
+ masks_on_gpu: false
123
+ patch_size: 1
124
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
125
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
126
+ fisheye_crop_radius: null
127
+ ignore_mask: false
128
+ is_equirectangular: false
129
+ keep_full_image: false
130
+ max_num_iterations: 100
131
+ num_rays_per_batch: 4096
132
+ rejection_sample_mask: false
133
+ train_num_images_to_sample_from: -1
134
+ train_num_rays_per_batch: 4096
135
+ train_num_times_to_repeat_images: -1
136
+ max_num_samples_per_ray: 1024
137
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
138
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
139
+ alpha_thre: 0.0
140
+ appearance_embedding_dim: 32
141
+ background_color: random
142
+ collider_params: null
143
+ cone_angle: 0.00390625
144
+ densify: true
145
+ disable_scene_contraction: false
146
+ enable_collider: false
147
+ eval_num_rays_per_chunk: 8192
148
+ far_plane: 1000.0
149
+ grid_resolution: 128
150
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
151
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
152
+ chi_squared_radius: 2.0
153
+ device: cuda
154
+ n_neighbours: 16
155
+ loss_coefficients:
156
+ rgb_loss_coarse: 1.0
157
+ rgb_loss_fine: 1.0
158
+ max_gb: 20
159
+ near_plane: 0.0
160
+ prompt: null
161
+ prune: true
162
+ render_step_size: 0.005
163
+ unfreeze_means: true
164
+ use_appearance_embedding: false
165
+ use_gradient_scaling: true
166
+ target_num_samples: 262144
167
+ project_name: nerfstudio-project
168
+ prompt: null
169
+ pruning_interval: 1000
170
+ pruning_start_step: 1000
171
+ pruning_stop_step: 15000
172
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
173
+ - nerfstudio_models
174
+ save_only_latest_checkpoint: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: open_scenes_baseline
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
configs/fox_nodding.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - fox
6
+ denisification_interval: 200
7
+ densification_start_step: 100
8
+ densification_stop_step: 8000
9
+ experiment_name: fox
10
+ freeze_means_step: 10000
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 0
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 1
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
101
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
102
+ auto_scale_poses: true
103
+ center_method: poses
104
+ data: !!python/object/apply:pathlib.PosixPath []
105
+ depth_unit_scale_factor: 0.001
106
+ downscale_factor: 1
107
+ eval_interval: 8
108
+ eval_mode: fraction
109
+ load_3D_points: true
110
+ mask_color: null
111
+ orientation_method: up
112
+ scale_factor: 1.0
113
+ scene_scale: 1.0
114
+ train_split_fraction: 0.9
115
+ eval_image_indices: !!python/tuple
116
+ - 0
117
+ eval_num_images_to_sample_from: -1
118
+ eval_num_rays_per_batch: 4096
119
+ eval_num_times_to_repeat_images: -1
120
+ images_on_gpu: false
121
+ masks_on_gpu: false
122
+ patch_size: 1
123
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
124
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
125
+ fisheye_crop_radius: null
126
+ ignore_mask: false
127
+ is_equirectangular: false
128
+ keep_full_image: false
129
+ max_num_iterations: 100
130
+ num_rays_per_batch: 4096
131
+ rejection_sample_mask: false
132
+ train_num_images_to_sample_from: -1
133
+ train_num_rays_per_batch: 4096
134
+ train_num_times_to_repeat_images: -1
135
+ max_num_samples_per_ray: 1024
136
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
137
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
138
+ alpha_thre: 0.0
139
+ appearance_embedding_dim: 32
140
+ background_color: random
141
+ collider_params: null
142
+ cone_angle: 0.00390625
143
+ densify: true
144
+ disable_scene_contraction: false
145
+ enable_collider: false
146
+ eval_num_rays_per_chunk: 8192
147
+ far_plane: 1000.0
148
+ grid_resolution: 128
149
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
150
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
151
+ chi_squared_radius: 2.0
152
+ device: cuda
153
+ n_neighbours: 16
154
+ loss_coefficients:
155
+ rgb_loss_coarse: 1.0
156
+ rgb_loss_fine: 1.0
157
+ max_gb: 20
158
+ near_plane: 0.0
159
+ prompt: null
160
+ prune: true
161
+ render_step_size: 0.005
162
+ unfreeze_means: true
163
+ use_appearance_embedding: false
164
+ use_gradient_scaling: true
165
+ target_num_samples: 262144
166
+ project_name: nerfstudio-project
167
+ prompt: null
168
+ pruning_interval: 1000
169
+ pruning_start_step: 1000
170
+ pruning_stop_step: 15000
171
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
172
+ - nerfstudio_models
173
+ save_only_latest_checkpoint: true
174
+ start_paused: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: fox_nodding
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
configs/garden.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - 360_v2
6
+ - garden
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: garden
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
102
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
103
+ auto_scale_poses: true
104
+ center_method: poses
105
+ data: !!python/object/apply:pathlib.PosixPath []
106
+ depth_unit_scale_factor: 0.001
107
+ downscale_factor: 4
108
+ eval_interval: 8
109
+ eval_mode: fraction
110
+ load_3D_points: true
111
+ mask_color: null
112
+ orientation_method: up
113
+ scale_factor: 1.0
114
+ scene_scale: 1.0
115
+ train_split_fraction: 0.9
116
+ eval_image_indices: !!python/tuple
117
+ - 0
118
+ eval_num_images_to_sample_from: -1
119
+ eval_num_rays_per_batch: 4096
120
+ eval_num_times_to_repeat_images: -1
121
+ images_on_gpu: false
122
+ masks_on_gpu: false
123
+ patch_size: 1
124
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
125
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
126
+ fisheye_crop_radius: null
127
+ ignore_mask: false
128
+ is_equirectangular: false
129
+ keep_full_image: false
130
+ max_num_iterations: 100
131
+ num_rays_per_batch: 4096
132
+ rejection_sample_mask: false
133
+ train_num_images_to_sample_from: -1
134
+ train_num_rays_per_batch: 4096
135
+ train_num_times_to_repeat_images: -1
136
+ max_num_samples_per_ray: 1024
137
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
138
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
139
+ alpha_thre: 0.0
140
+ appearance_embedding_dim: 32
141
+ background_color: random
142
+ collider_params: null
143
+ cone_angle: 0.00390625
144
+ densify: true
145
+ disable_scene_contraction: false
146
+ enable_collider: false
147
+ eval_num_rays_per_chunk: 8192
148
+ far_plane: 1000.0
149
+ grid_resolution: 128
150
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
151
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
152
+ chi_squared_radius: 0.25
153
+ device: cuda
154
+ n_neighbours: 16
155
+ loss_coefficients:
156
+ rgb_loss_coarse: 1.0
157
+ rgb_loss_fine: 1.0
158
+ max_gb: 20
159
+ near_plane: 0.0
160
+ prompt: null
161
+ prune: true
162
+ render_step_size: 0.005
163
+ unfreeze_means: true
164
+ use_appearance_embedding: false
165
+ use_gradient_scaling: true
166
+ target_num_samples: 262144
167
+ project_name: nerfstudio-project
168
+ prompt: null
169
+ pruning_interval: 1000
170
+ pruning_start_step: 1000
171
+ pruning_stop_step: 15000
172
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
173
+ - nerfstudio_models
174
+ save_only_latest_checkpoint: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: open_scenes_baseline
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
configs/hotdog.yml ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - hotdog
7
+ denisification_interval: 200
8
+ densification_start_step: 1000
9
+ densification_stop_step: 8000
10
+ experiment_name: hotdog
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 10
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 10
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
101
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
102
+ alpha_color: white
103
+ data: !!python/object/apply:pathlib.PosixPath
104
+ - data
105
+ - blender
106
+ - lego
107
+ ply_path: null
108
+ scale_factor: 1.0
109
+ eval_image_indices: !!python/tuple
110
+ - 0
111
+ eval_num_images_to_sample_from: -1
112
+ eval_num_rays_per_batch: 4096
113
+ eval_num_times_to_repeat_images: -1
114
+ images_on_gpu: false
115
+ masks_on_gpu: false
116
+ patch_size: 1
117
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
118
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
119
+ fisheye_crop_radius: null
120
+ ignore_mask: false
121
+ is_equirectangular: false
122
+ keep_full_image: false
123
+ max_num_iterations: 100
124
+ num_rays_per_batch: 4096
125
+ rejection_sample_mask: false
126
+ train_num_images_to_sample_from: -1
127
+ train_num_rays_per_batch: 4096
128
+ train_num_times_to_repeat_images: -1
129
+ max_num_samples_per_ray: 1024
130
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
131
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
132
+ alpha_thre: 0.0
133
+ appearance_embedding_dim: 32
134
+ background_color: white
135
+ collider_params: null
136
+ cone_angle: 0.0
137
+ densify: true
138
+ disable_scene_contraction: true
139
+ enable_collider: false
140
+ eval_num_rays_per_chunk: 8192
141
+ far_plane: 6.0
142
+ grid_resolution: 128
143
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
144
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
145
+ chi_squared_radius: 2.0
146
+ device: cuda
147
+ n_neighbours: 32
148
+ loss_coefficients:
149
+ rgb_loss_coarse: 1.0
150
+ rgb_loss_fine: 1.0
151
+ max_gb: 20
152
+ near_plane: 2.0
153
+ prompt: null
154
+ prune: true
155
+ render_step_size: 0.005
156
+ use_appearance_embedding: false
157
+ use_gradient_scaling: true
158
+ target_num_samples: 262144
159
+ project_name: nerfstudio-project
160
+ prompt: null
161
+ pruning_interval: 1000
162
+ pruning_start_step: 1000
163
+ pruning_stop_step: 15000
164
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
165
+ - nerfstudio_models
166
+ save_only_latest_checkpoint: true
167
+ steps_per_eval_all_images: 25000
168
+ steps_per_eval_batch: 500
169
+ steps_per_eval_image: 500
170
+ steps_per_save: 100
171
+ timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune
172
+ use_grad_scaler: false
173
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
174
+ camera_frustum_scale: 0.1
175
+ default_composite_depth: true
176
+ image_format: jpeg
177
+ jpeg_quality: 75
178
+ make_share_url: false
179
+ max_num_display_images: 512
180
+ num_rays_per_chunk: 4096
181
+ quit_on_train_completion: true
182
+ relative_log_filename: viewer_log_filename.txt
183
+ websocket_host: 0.0.0.0
184
+ websocket_port: null
185
+ websocket_port_default: 7007
186
+ vis: viewer
configs/kitchen.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - 360_v2
6
+ - kitchen
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: kitchen
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
102
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
103
+ auto_scale_poses: true
104
+ center_method: poses
105
+ data: !!python/object/apply:pathlib.PosixPath []
106
+ depth_unit_scale_factor: 0.001
107
+ downscale_factor: 4
108
+ eval_interval: 8
109
+ eval_mode: fraction
110
+ load_3D_points: true
111
+ mask_color: null
112
+ orientation_method: up
113
+ scale_factor: 1.0
114
+ scene_scale: 1.0
115
+ train_split_fraction: 0.9
116
+ eval_image_indices: !!python/tuple
117
+ - 0
118
+ eval_num_images_to_sample_from: -1
119
+ eval_num_rays_per_batch: 4096
120
+ eval_num_times_to_repeat_images: -1
121
+ images_on_gpu: false
122
+ masks_on_gpu: false
123
+ patch_size: 1
124
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
125
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
126
+ fisheye_crop_radius: null
127
+ ignore_mask: false
128
+ is_equirectangular: false
129
+ keep_full_image: false
130
+ max_num_iterations: 100
131
+ num_rays_per_batch: 4096
132
+ rejection_sample_mask: false
133
+ train_num_images_to_sample_from: -1
134
+ train_num_rays_per_batch: 4096
135
+ train_num_times_to_repeat_images: -1
136
+ max_num_samples_per_ray: 1024
137
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
138
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
139
+ alpha_thre: 0.0
140
+ appearance_embedding_dim: 32
141
+ background_color: random
142
+ collider_params: null
143
+ cone_angle: 0.00390625
144
+ densify: true
145
+ disable_scene_contraction: false
146
+ enable_collider: false
147
+ eval_num_rays_per_chunk: 8192
148
+ far_plane: 1000.0
149
+ grid_resolution: 128
150
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
151
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
152
+ chi_squared_radius: 0.25
153
+ device: cuda
154
+ n_neighbours: 16
155
+ loss_coefficients:
156
+ rgb_loss_coarse: 1.0
157
+ rgb_loss_fine: 1.0
158
+ max_gb: 20
159
+ near_plane: 0.0
160
+ prompt: null
161
+ prune: true
162
+ render_step_size: 0.005
163
+ unfreeze_means: true
164
+ use_appearance_embedding: false
165
+ use_gradient_scaling: true
166
+ target_num_samples: 262144
167
+ project_name: nerfstudio-project
168
+ prompt: null
169
+ pruning_interval: 1000
170
+ pruning_start_step: 1000
171
+ pruning_stop_step: 15000
172
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
173
+ - nerfstudio_models
174
+ save_only_latest_checkpoint: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: open_scenes_baseline
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
configs/lego.yml ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - lego
7
+ denisification_interval: 200
8
+ densification_start_step: 1000
9
+ densification_stop_step: 8000
10
+ experiment_name: lego
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 10
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 10
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
101
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
102
+ alpha_color: white
103
+ data: !!python/object/apply:pathlib.PosixPath
104
+ - data
105
+ - blender
106
+ - lego
107
+ ply_path: null
108
+ scale_factor: 1.0
109
+ eval_image_indices: !!python/tuple
110
+ - 0
111
+ eval_num_images_to_sample_from: -1
112
+ eval_num_rays_per_batch: 4096
113
+ eval_num_times_to_repeat_images: -1
114
+ images_on_gpu: false
115
+ masks_on_gpu: false
116
+ patch_size: 1
117
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
118
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
119
+ fisheye_crop_radius: null
120
+ ignore_mask: false
121
+ is_equirectangular: false
122
+ keep_full_image: false
123
+ max_num_iterations: 100
124
+ num_rays_per_batch: 4096
125
+ rejection_sample_mask: false
126
+ train_num_images_to_sample_from: -1
127
+ train_num_rays_per_batch: 4096
128
+ train_num_times_to_repeat_images: -1
129
+ max_num_samples_per_ray: 1024
130
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
131
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
132
+ alpha_thre: 0.0
133
+ appearance_embedding_dim: 32
134
+ background_color: white
135
+ collider_params: null
136
+ cone_angle: 0.0
137
+ densify: true
138
+ disable_scene_contraction: true
139
+ enable_collider: false
140
+ eval_num_rays_per_chunk: 8192
141
+ far_plane: 6.0
142
+ grid_resolution: 128
143
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
144
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
145
+ chi_squared_radius: 2.0
146
+ device: cuda
147
+ n_neighbours: 32
148
+ loss_coefficients:
149
+ rgb_loss_coarse: 1.0
150
+ rgb_loss_fine: 1.0
151
+ max_gb: 20
152
+ near_plane: 2.0
153
+ prompt: null
154
+ prune: true
155
+ render_step_size: 0.005
156
+ use_appearance_embedding: false
157
+ use_gradient_scaling: true
158
+ target_num_samples: 262144
159
+ project_name: nerfstudio-project
160
+ prompt: null
161
+ pruning_interval: 1000
162
+ pruning_start_step: 1000
163
+ pruning_stop_step: 15000
164
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
165
+ - nerfstudio_models
166
+ save_only_latest_checkpoint: true
167
+ steps_per_eval_all_images: 25000
168
+ steps_per_eval_batch: 500
169
+ steps_per_eval_image: 500
170
+ steps_per_save: 100
171
+ timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune
172
+ use_grad_scaler: false
173
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
174
+ camera_frustum_scale: 0.1
175
+ default_composite_depth: true
176
+ image_format: jpeg
177
+ jpeg_quality: 75
178
+ make_share_url: false
179
+ max_num_display_images: 512
180
+ num_rays_per_chunk: 4096
181
+ quit_on_train_completion: true
182
+ relative_log_filename: viewer_log_filename.txt
183
+ websocket_host: 0.0.0.0
184
+ websocket_port: null
185
+ websocket_port_default: 7007
186
+ vis: viewer
configs/materials.yml ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - materials
7
+ denisification_interval: 200
8
+ densification_start_step: 1000
9
+ densification_stop_step: 8000
10
+ experiment_name: materials
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 10
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 10
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
101
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
102
+ alpha_color: white
103
+ data: !!python/object/apply:pathlib.PosixPath
104
+ - data
105
+ - blender
106
+ - lego
107
+ ply_path: null
108
+ scale_factor: 1.0
109
+ eval_image_indices: !!python/tuple
110
+ - 0
111
+ eval_num_images_to_sample_from: -1
112
+ eval_num_rays_per_batch: 4096
113
+ eval_num_times_to_repeat_images: -1
114
+ images_on_gpu: false
115
+ masks_on_gpu: false
116
+ patch_size: 1
117
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
118
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
119
+ fisheye_crop_radius: null
120
+ ignore_mask: false
121
+ is_equirectangular: false
122
+ keep_full_image: false
123
+ max_num_iterations: 100
124
+ num_rays_per_batch: 4096
125
+ rejection_sample_mask: false
126
+ train_num_images_to_sample_from: -1
127
+ train_num_rays_per_batch: 4096
128
+ train_num_times_to_repeat_images: -1
129
+ max_num_samples_per_ray: 1024
130
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
131
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
132
+ alpha_thre: 0.0
133
+ appearance_embedding_dim: 32
134
+ background_color: white
135
+ collider_params: null
136
+ cone_angle: 0.0
137
+ densify: true
138
+ disable_scene_contraction: true
139
+ enable_collider: false
140
+ eval_num_rays_per_chunk: 8192
141
+ far_plane: 6.0
142
+ grid_resolution: 128
143
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
144
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
145
+ chi_squared_radius: 2.0
146
+ device: cuda
147
+ n_neighbours: 32
148
+ loss_coefficients:
149
+ rgb_loss_coarse: 1.0
150
+ rgb_loss_fine: 1.0
151
+ max_gb: 20
152
+ near_plane: 2.0
153
+ prompt: null
154
+ prune: true
155
+ render_step_size: 0.005
156
+ use_appearance_embedding: false
157
+ use_gradient_scaling: true
158
+ target_num_samples: 262144
159
+ project_name: nerfstudio-project
160
+ prompt: null
161
+ pruning_interval: 1000
162
+ pruning_start_step: 1000
163
+ pruning_stop_step: 15000
164
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
165
+ - nerfstudio_models
166
+ save_only_latest_checkpoint: true
167
+ steps_per_eval_all_images: 25000
168
+ steps_per_eval_batch: 500
169
+ steps_per_eval_image: 500
170
+ steps_per_save: 100
171
+ timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune
172
+ use_grad_scaler: false
173
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
174
+ camera_frustum_scale: 0.1
175
+ default_composite_depth: true
176
+ image_format: jpeg
177
+ jpeg_quality: 75
178
+ make_share_url: false
179
+ max_num_display_images: 512
180
+ num_rays_per_chunk: 4096
181
+ quit_on_train_completion: true
182
+ relative_log_filename: viewer_log_filename.txt
183
+ websocket_host: 0.0.0.0
184
+ websocket_port: null
185
+ websocket_port_default: 7007
186
+ vis: viewer
configs/mic.yml ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - mic
7
+ denisification_interval: 200
8
+ densification_start_step: 1000
9
+ densification_stop_step: 8000
10
+ experiment_name: mic
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 10
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 10
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
101
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
102
+ alpha_color: white
103
+ data: !!python/object/apply:pathlib.PosixPath
104
+ - data
105
+ - blender
106
+ - lego
107
+ ply_path: null
108
+ scale_factor: 1.0
109
+ eval_image_indices: !!python/tuple
110
+ - 0
111
+ eval_num_images_to_sample_from: -1
112
+ eval_num_rays_per_batch: 4096
113
+ eval_num_times_to_repeat_images: -1
114
+ images_on_gpu: false
115
+ masks_on_gpu: false
116
+ patch_size: 1
117
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
118
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
119
+ fisheye_crop_radius: null
120
+ ignore_mask: false
121
+ is_equirectangular: false
122
+ keep_full_image: false
123
+ max_num_iterations: 100
124
+ num_rays_per_batch: 4096
125
+ rejection_sample_mask: false
126
+ train_num_images_to_sample_from: -1
127
+ train_num_rays_per_batch: 4096
128
+ train_num_times_to_repeat_images: -1
129
+ max_num_samples_per_ray: 1024
130
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
131
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
132
+ alpha_thre: 0.0
133
+ appearance_embedding_dim: 32
134
+ background_color: white
135
+ collider_params: null
136
+ cone_angle: 0.0
137
+ densify: true
138
+ disable_scene_contraction: true
139
+ enable_collider: false
140
+ eval_num_rays_per_chunk: 8192
141
+ far_plane: 6.0
142
+ grid_resolution: 128
143
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
144
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
145
+ chi_squared_radius: 2.0
146
+ device: cuda
147
+ n_neighbours: 32
148
+ loss_coefficients:
149
+ rgb_loss_coarse: 1.0
150
+ rgb_loss_fine: 1.0
151
+ max_gb: 20
152
+ near_plane: 2.0
153
+ prompt: null
154
+ prune: true
155
+ render_step_size: 0.005
156
+ use_appearance_embedding: false
157
+ use_gradient_scaling: true
158
+ target_num_samples: 262144
159
+ project_name: nerfstudio-project
160
+ prompt: null
161
+ pruning_interval: 1000
162
+ pruning_start_step: 1000
163
+ pruning_stop_step: 15000
164
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
165
+ - nerfstudio_models
166
+ save_only_latest_checkpoint: true
167
+ steps_per_eval_all_images: 25000
168
+ steps_per_eval_batch: 500
169
+ steps_per_eval_image: 500
170
+ steps_per_save: 100
171
+ timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune
172
+ use_grad_scaler: false
173
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
174
+ camera_frustum_scale: 0.1
175
+ default_composite_depth: true
176
+ image_format: jpeg
177
+ jpeg_quality: 75
178
+ make_share_url: false
179
+ max_num_display_images: 512
180
+ num_rays_per_chunk: 4096
181
+ quit_on_train_completion: true
182
+ relative_log_filename: viewer_log_filename.txt
183
+ websocket_host: 0.0.0.0
184
+ websocket_port: null
185
+ websocket_port_default: 7007
186
+ vis: viewer
configs/pillow_duck.yml ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - pillow_duck
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: pillow_duck
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
102
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
103
+ alpha_color: white
104
+ data: !!python/object/apply:pathlib.PosixPath
105
+ - data
106
+ - blender
107
+ - lego
108
+ ply_path: null
109
+ scale_factor: 1.0
110
+ eval_image_indices: !!python/tuple
111
+ - 0
112
+ eval_num_images_to_sample_from: -1
113
+ eval_num_rays_per_batch: 4096
114
+ eval_num_times_to_repeat_images: -1
115
+ images_on_gpu: false
116
+ masks_on_gpu: false
117
+ patch_size: 1
118
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
119
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
120
+ fisheye_crop_radius: null
121
+ ignore_mask: false
122
+ is_equirectangular: false
123
+ keep_full_image: false
124
+ max_num_iterations: 100
125
+ num_rays_per_batch: 4096
126
+ rejection_sample_mask: false
127
+ train_num_images_to_sample_from: -1
128
+ train_num_rays_per_batch: 4096
129
+ train_num_times_to_repeat_images: -1
130
+ max_num_samples_per_ray: 1024
131
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
132
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
133
+ alpha_thre: 0.0
134
+ appearance_embedding_dim: 32
135
+ background_color: white
136
+ collider_params: null
137
+ cone_angle: 0.0
138
+ densify: true
139
+ disable_scene_contraction: true
140
+ enable_collider: false
141
+ eval_num_rays_per_chunk: 8192
142
+ far_plane: 6.0
143
+ grid_resolution: 128
144
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
145
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
146
+ chi_squared_radius: 2.0
147
+ device: cuda
148
+ n_neighbours: 16
149
+ loss_coefficients:
150
+ rgb_loss_coarse: 1.0
151
+ rgb_loss_fine: 1.0
152
+ max_gb: 20
153
+ near_plane: 2.0
154
+ prompt: null
155
+ prune: true
156
+ render_step_size: 0.005
157
+ unfreeze_means: true
158
+ use_appearance_embedding: false
159
+ use_gradient_scaling: true
160
+ target_num_samples: 262144
161
+ project_name: nerfstudio-project
162
+ prompt: null
163
+ pruning_interval: 1000
164
+ pruning_start_step: 1000
165
+ pruning_stop_step: 15000
166
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
167
+ - nerfstudio_models
168
+ save_only_latest_checkpoint: true
169
+ steps_per_eval_all_images: 25000
170
+ steps_per_eval_batch: 500
171
+ steps_per_eval_image: 500
172
+ steps_per_save: 100
173
+ timestamp: pillow_duck
174
+ unfreeze_means_step: 500
175
+ use_grad_scaler: false
176
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
177
+ camera_frustum_scale: 0.1
178
+ default_composite_depth: true
179
+ image_format: jpeg
180
+ jpeg_quality: 75
181
+ make_share_url: false
182
+ max_num_display_images: 512
183
+ num_rays_per_chunk: 4096
184
+ quit_on_train_completion: true
185
+ relative_log_filename: viewer_log_filename.txt
186
+ websocket_host: 0.0.0.0
187
+ websocket_port: null
188
+ websocket_port_default: 7007
189
+ vis: viewer
configs/pirate_flag.yml ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - pirate_flag
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 2000
10
+ experiment_name: pirate_flag
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
102
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
103
+ alpha_color: white
104
+ data: !!python/object/apply:pathlib.PosixPath
105
+ - data
106
+ - blender
107
+ - lego
108
+ ply_path: null
109
+ scale_factor: 1.0
110
+ eval_image_indices: !!python/tuple
111
+ - 0
112
+ eval_num_images_to_sample_from: -1
113
+ eval_num_rays_per_batch: 4096
114
+ eval_num_times_to_repeat_images: -1
115
+ images_on_gpu: false
116
+ masks_on_gpu: false
117
+ patch_size: 1
118
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
119
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
120
+ fisheye_crop_radius: null
121
+ ignore_mask: false
122
+ is_equirectangular: false
123
+ keep_full_image: false
124
+ max_num_iterations: 100
125
+ num_rays_per_batch: 4096
126
+ rejection_sample_mask: false
127
+ train_num_images_to_sample_from: -1
128
+ train_num_rays_per_batch: 4096
129
+ train_num_times_to_repeat_images: -1
130
+ max_num_samples_per_ray: 1024
131
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
132
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
133
+ alpha_thre: 0.0
134
+ appearance_embedding_dim: 32
135
+ background_color: white
136
+ collider_params: null
137
+ cone_angle: 0.0
138
+ densify: true
139
+ disable_scene_contraction: true
140
+ enable_collider: false
141
+ eval_num_rays_per_chunk: 8192
142
+ far_plane: 6.0
143
+ grid_resolution: 128
144
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
145
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
146
+ chi_squared_radius: 2.0
147
+ device: cuda
148
+ n_neighbours: 16
149
+ loss_coefficients:
150
+ rgb_loss_coarse: 1.0
151
+ rgb_loss_fine: 1.0
152
+ max_gb: 20
153
+ near_plane: 2.0
154
+ prompt: null
155
+ prune: true
156
+ render_step_size: 0.005
157
+ unfreeze_means: true
158
+ use_appearance_embedding: false
159
+ use_gradient_scaling: true
160
+ target_num_samples: 262144
161
+ project_name: nerfstudio-project
162
+ prompt: null
163
+ pruning_interval: 1000
164
+ pruning_start_step: 1000
165
+ pruning_stop_step: 15000
166
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
167
+ - nerfstudio_models
168
+ save_only_latest_checkpoint: true
169
+ steps_per_eval_all_images: 25000
170
+ steps_per_eval_batch: 500
171
+ steps_per_eval_image: 500
172
+ steps_per_save: 100
173
+ timestamp: pirate_flag
174
+ unfreeze_means_step: 500
175
+ use_grad_scaler: false
176
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
177
+ camera_frustum_scale: 0.1
178
+ default_composite_depth: true
179
+ image_format: jpeg
180
+ jpeg_quality: 75
181
+ make_share_url: false
182
+ max_num_display_images: 512
183
+ num_rays_per_chunk: 4096
184
+ quit_on_train_completion: true
185
+ relative_log_filename: viewer_log_filename.txt
186
+ websocket_host: 0.0.0.0
187
+ websocket_port: null
188
+ websocket_port_default: 7007
189
+ vis: viewer
configs/room.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - 360_v2
6
+ - room
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: room
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
102
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
103
+ auto_scale_poses: true
104
+ center_method: poses
105
+ data: !!python/object/apply:pathlib.PosixPath []
106
+ depth_unit_scale_factor: 0.001
107
+ downscale_factor: 4
108
+ eval_interval: 8
109
+ eval_mode: fraction
110
+ load_3D_points: true
111
+ mask_color: null
112
+ orientation_method: up
113
+ scale_factor: 1.0
114
+ scene_scale: 1.0
115
+ train_split_fraction: 0.9
116
+ eval_image_indices: !!python/tuple
117
+ - 0
118
+ eval_num_images_to_sample_from: -1
119
+ eval_num_rays_per_batch: 4096
120
+ eval_num_times_to_repeat_images: -1
121
+ images_on_gpu: false
122
+ masks_on_gpu: false
123
+ patch_size: 1
124
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
125
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
126
+ fisheye_crop_radius: null
127
+ ignore_mask: false
128
+ is_equirectangular: false
129
+ keep_full_image: false
130
+ max_num_iterations: 100
131
+ num_rays_per_batch: 4096
132
+ rejection_sample_mask: false
133
+ train_num_images_to_sample_from: -1
134
+ train_num_rays_per_batch: 4096
135
+ train_num_times_to_repeat_images: -1
136
+ max_num_samples_per_ray: 1024
137
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
138
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
139
+ alpha_thre: 0.0
140
+ appearance_embedding_dim: 32
141
+ background_color: random
142
+ collider_params: null
143
+ cone_angle: 0.00390625
144
+ densify: true
145
+ disable_scene_contraction: false
146
+ enable_collider: false
147
+ eval_num_rays_per_chunk: 8192
148
+ far_plane: 1000.0
149
+ grid_resolution: 128
150
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
151
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
152
+ chi_squared_radius: 2.0
153
+ device: cuda
154
+ n_neighbours: 16
155
+ loss_coefficients:
156
+ rgb_loss_coarse: 1.0
157
+ rgb_loss_fine: 1.0
158
+ max_gb: 20
159
+ near_plane: 0.0
160
+ prompt: null
161
+ prune: true
162
+ render_step_size: 0.005
163
+ unfreeze_means: true
164
+ use_appearance_embedding: false
165
+ use_gradient_scaling: true
166
+ target_num_samples: 262144
167
+ project_name: nerfstudio-project
168
+ prompt: null
169
+ pruning_interval: 1000
170
+ pruning_start_step: 1000
171
+ pruning_stop_step: 15000
172
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
173
+ - nerfstudio_models
174
+ save_only_latest_checkpoint: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: open_scenes_baseline
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
configs/rug_cup.yml ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - rug
7
+ denisification_interval: 200
8
+ densification_start_step: 1000
9
+ densification_stop_step: 8000
10
+ experiment_name: rug
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 0
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 1
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
101
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
102
+ alpha_color: white
103
+ data: !!python/object/apply:pathlib.PosixPath
104
+ - data
105
+ - blender
106
+ - lego
107
+ ply_path: null
108
+ scale_factor: 1.0
109
+ eval_image_indices: !!python/tuple
110
+ - 0
111
+ eval_num_images_to_sample_from: -1
112
+ eval_num_rays_per_batch: 4096
113
+ eval_num_times_to_repeat_images: -1
114
+ images_on_gpu: false
115
+ masks_on_gpu: false
116
+ patch_size: 1
117
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
118
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
119
+ fisheye_crop_radius: null
120
+ ignore_mask: false
121
+ is_equirectangular: false
122
+ keep_full_image: false
123
+ max_num_iterations: 100
124
+ num_rays_per_batch: 4096
125
+ rejection_sample_mask: false
126
+ train_num_images_to_sample_from: -1
127
+ train_num_rays_per_batch: 4096
128
+ train_num_times_to_repeat_images: -1
129
+ max_num_samples_per_ray: 1024
130
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
131
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
132
+ alpha_thre: 0.0
133
+ appearance_embedding_dim: 32
134
+ background_color: white
135
+ collider_params: null
136
+ cone_angle: 0.0
137
+ densify: false
138
+ disable_scene_contraction: true
139
+ enable_collider: false
140
+ eval_num_rays_per_chunk: 8192
141
+ far_plane: 6.0
142
+ grid_resolution: 128
143
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
144
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
145
+ chi_squared_radius: 2.0
146
+ device: cuda
147
+ n_neighbours: 16
148
+ loss_coefficients:
149
+ rgb_loss_coarse: 1.0
150
+ rgb_loss_fine: 1.0
151
+ max_gb: 20
152
+ near_plane: 2.0
153
+ prompt: null
154
+ prune: false
155
+ render_step_size: 0.005
156
+ use_appearance_embedding: false
157
+ use_gradient_scaling: true
158
+ target_num_samples: 262144
159
+ project_name: nerfstudio-project
160
+ prompt: null
161
+ pruning_interval: 1000
162
+ pruning_start_step: 1000
163
+ pruning_stop_step: 15000
164
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
165
+ - nerfstudio_models
166
+ save_only_latest_checkpoint: true
167
+ start_paused: false
168
+ steps_per_eval_all_images: 25000
169
+ steps_per_eval_batch: 500
170
+ steps_per_eval_image: 500
171
+ steps_per_save: 100
172
+ timestamp: falling_rug
173
+ use_grad_scaler: false
174
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
175
+ camera_frustum_scale: 0.1
176
+ default_composite_depth: true
177
+ image_format: jpeg
178
+ jpeg_quality: 75
179
+ make_share_url: false
180
+ max_num_display_images: 512
181
+ num_rays_per_chunk: 4096
182
+ quit_on_train_completion: false
183
+ relative_log_filename: viewer_log_filename.txt
184
+ websocket_host: 0.0.0.0
185
+ websocket_port: null
186
+ websocket_port_default: 7007
187
+ vis: viewer
configs/ship.yml ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - nerf_synthetic
6
+ - ship
7
+ denisification_interval: 200
8
+ densification_start_step: 1000
9
+ densification_stop_step: 8000
10
+ experiment_name: ship
11
+ gradient_accumulation_steps: {}
12
+ load_checkpoint: null
13
+ load_config: null
14
+ load_dir: null
15
+ load_scheduler: true
16
+ load_step: null
17
+ log_gradients: false
18
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
19
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
20
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
21
+ enable: true
22
+ max_log_size: 10
23
+ stats_to_track: !!python/tuple
24
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
25
+ - Train Iter (time)
26
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
27
+ - Train Rays / Sec
28
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
29
+ - Test PSNR
30
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
31
+ - Vis Rays / Sec
32
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
33
+ - Test Rays / Sec
34
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
35
+ - ETA (time)
36
+ max_buffer_size: 20
37
+ profiler: basic
38
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
39
+ steps_per_log: 10
40
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
41
+ device_type: cuda
42
+ dist_url: auto
43
+ machine_rank: 0
44
+ num_devices: 1
45
+ num_machines: 1
46
+ seed: 42
47
+ max_num_iterations: 20000
48
+ method_name: gnerf
49
+ mixed_precision: false
50
+ optimizers:
51
+ fields:
52
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
53
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
54
+ eps: 1.0e-15
55
+ lr: 0.01
56
+ max_norm: null
57
+ weight_decay: 1.0e-06
58
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
59
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
60
+ gamma: 0.33
61
+ max_steps: 20000
62
+ milestones: &id003 !!python/tuple
63
+ - 0.5
64
+ - 0.75
65
+ - 0.9
66
+ log_covs:
67
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
68
+ _target: *id001
69
+ eps: 1.0e-15
70
+ lr: 0.001
71
+ max_norm: null
72
+ weight_decay: 0
73
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
74
+ _target: *id002
75
+ gamma: 0.33
76
+ max_steps: 20000
77
+ milestones: *id003
78
+ means:
79
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
80
+ _target: *id001
81
+ eps: 1.0e-15
82
+ lr: 1.0e-05
83
+ max_norm: null
84
+ weight_decay: 0
85
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
86
+ _target: *id002
87
+ gamma: 0.33
88
+ max_steps: 20000
89
+ milestones: *id003
90
+ output_dir: !!python/object/apply:pathlib.PosixPath
91
+ - outputs
92
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
93
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
94
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
95
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
96
+ camera_optimizer: null
97
+ camera_res_scale_factor: 1.0
98
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
99
+ data: *id004
100
+ dataparser: !!python/object:gnerf.data.dataparsers.GNeRFBlenderDataParserConfig
101
+ _target: !!python/name:gnerf.data.dataparsers.GNeRFBlender ''
102
+ alpha_color: white
103
+ data: !!python/object/apply:pathlib.PosixPath
104
+ - data
105
+ - blender
106
+ - lego
107
+ ply_path: null
108
+ scale_factor: 1.0
109
+ eval_image_indices: !!python/tuple
110
+ - 0
111
+ eval_num_images_to_sample_from: -1
112
+ eval_num_rays_per_batch: 4096
113
+ eval_num_times_to_repeat_images: -1
114
+ images_on_gpu: false
115
+ masks_on_gpu: false
116
+ patch_size: 1
117
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
118
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
119
+ fisheye_crop_radius: null
120
+ ignore_mask: false
121
+ is_equirectangular: false
122
+ keep_full_image: false
123
+ max_num_iterations: 100
124
+ num_rays_per_batch: 4096
125
+ rejection_sample_mask: false
126
+ train_num_images_to_sample_from: -1
127
+ train_num_rays_per_batch: 4096
128
+ train_num_times_to_repeat_images: -1
129
+ max_num_samples_per_ray: 1024
130
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
131
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
132
+ alpha_thre: 0.0
133
+ appearance_embedding_dim: 32
134
+ background_color: white
135
+ collider_params: null
136
+ cone_angle: 0.0
137
+ densify: true
138
+ disable_scene_contraction: true
139
+ enable_collider: false
140
+ eval_num_rays_per_chunk: 8192
141
+ far_plane: 6.0
142
+ grid_resolution: 128
143
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
144
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
145
+ chi_squared_radius: 2.0
146
+ device: cuda
147
+ n_neighbours: 32
148
+ loss_coefficients:
149
+ rgb_loss_coarse: 1.0
150
+ rgb_loss_fine: 1.0
151
+ max_gb: 20
152
+ near_plane: 2.0
153
+ prompt: null
154
+ prune: true
155
+ render_step_size: 0.005
156
+ use_appearance_embedding: false
157
+ use_gradient_scaling: true
158
+ target_num_samples: 262144
159
+ project_name: nerfstudio-project
160
+ prompt: null
161
+ pruning_interval: 1000
162
+ pruning_start_step: 1000
163
+ pruning_stop_step: 15000
164
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
165
+ - nerfstudio_models
166
+ save_only_latest_checkpoint: true
167
+ steps_per_eval_all_images: 25000
168
+ steps_per_eval_batch: 500
169
+ steps_per_eval_image: 500
170
+ steps_per_save: 100
171
+ timestamp: hash_as_means_unfreezed_10k_lr_1e-5_densify_10k_100_prune
172
+ use_grad_scaler: false
173
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
174
+ camera_frustum_scale: 0.1
175
+ default_composite_depth: true
176
+ image_format: jpeg
177
+ jpeg_quality: 75
178
+ make_share_url: false
179
+ max_num_display_images: 512
180
+ num_rays_per_chunk: 4096
181
+ quit_on_train_completion: true
182
+ relative_log_filename: viewer_log_filename.txt
183
+ websocket_host: 0.0.0.0
184
+ websocket_port: null
185
+ websocket_port_default: 7007
186
+ vis: viewer
configs/stump.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - 360_v2
6
+ - stump
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: stump
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
102
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
103
+ auto_scale_poses: true
104
+ center_method: poses
105
+ data: !!python/object/apply:pathlib.PosixPath []
106
+ depth_unit_scale_factor: 0.001
107
+ downscale_factor: 4
108
+ eval_interval: 8
109
+ eval_mode: fraction
110
+ load_3D_points: true
111
+ mask_color: null
112
+ orientation_method: up
113
+ scale_factor: 1.0
114
+ scene_scale: 1.0
115
+ train_split_fraction: 0.9
116
+ eval_image_indices: !!python/tuple
117
+ - 0
118
+ eval_num_images_to_sample_from: -1
119
+ eval_num_rays_per_batch: 4096
120
+ eval_num_times_to_repeat_images: -1
121
+ images_on_gpu: false
122
+ masks_on_gpu: false
123
+ patch_size: 1
124
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
125
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
126
+ fisheye_crop_radius: null
127
+ ignore_mask: false
128
+ is_equirectangular: false
129
+ keep_full_image: false
130
+ max_num_iterations: 100
131
+ num_rays_per_batch: 4096
132
+ rejection_sample_mask: false
133
+ train_num_images_to_sample_from: -1
134
+ train_num_rays_per_batch: 4096
135
+ train_num_times_to_repeat_images: -1
136
+ max_num_samples_per_ray: 1024
137
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
138
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
139
+ alpha_thre: 0.0
140
+ appearance_embedding_dim: 32
141
+ background_color: random
142
+ collider_params: null
143
+ cone_angle: 0.00390625
144
+ densify: true
145
+ disable_scene_contraction: false
146
+ enable_collider: false
147
+ eval_num_rays_per_chunk: 8192
148
+ far_plane: 1000.0
149
+ grid_resolution: 128
150
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
151
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
152
+ chi_squared_radius: 2.0
153
+ device: cuda
154
+ n_neighbours: 16
155
+ loss_coefficients:
156
+ rgb_loss_coarse: 1.0
157
+ rgb_loss_fine: 1.0
158
+ max_gb: 20
159
+ near_plane: 0.0
160
+ prompt: null
161
+ prune: true
162
+ render_step_size: 0.005
163
+ unfreeze_means: true
164
+ use_appearance_embedding: false
165
+ use_gradient_scaling: true
166
+ target_num_samples: 262144
167
+ project_name: nerfstudio-project
168
+ prompt: null
169
+ pruning_interval: 1000
170
+ pruning_start_step: 1000
171
+ pruning_stop_step: 15000
172
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
173
+ - nerfstudio_models
174
+ save_only_latest_checkpoint: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: open_scenes_baseline
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
configs/treehill.yml ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ !!python/object:gnerf.gnerf_trainer.GNeRFTrainerConfig
2
+ _target: !!python/name:gnerf.gnerf_trainer.GNeRFTrainer ''
3
+ data: &id004 !!python/object/apply:pathlib.PosixPath
4
+ - data
5
+ - 360_v2
6
+ - treehill
7
+ denisification_interval: 100
8
+ densification_start_step: 100
9
+ densification_stop_step: 10000
10
+ experiment_name: treehill
11
+ freeze_means_step: 10000
12
+ gradient_accumulation_steps: {}
13
+ load_checkpoint: null
14
+ load_config: null
15
+ load_dir: null
16
+ load_scheduler: true
17
+ load_step: null
18
+ log_gradients: false
19
+ logging: !!python/object:nerfstudio.configs.base_config.LoggingConfig
20
+ local_writer: !!python/object:nerfstudio.configs.base_config.LocalWriterConfig
21
+ _target: !!python/name:nerfstudio.utils.writer.LocalWriter ''
22
+ enable: true
23
+ max_log_size: 10
24
+ stats_to_track: !!python/tuple
25
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
26
+ - Train Iter (time)
27
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
28
+ - Train Rays / Sec
29
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
30
+ - Test PSNR
31
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
32
+ - Vis Rays / Sec
33
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
34
+ - Test Rays / Sec
35
+ - !!python/object/apply:nerfstudio.utils.writer.EventName
36
+ - ETA (time)
37
+ max_buffer_size: 20
38
+ profiler: basic
39
+ relative_log_dir: !!python/object/apply:pathlib.PosixPath []
40
+ steps_per_log: 10
41
+ machine: !!python/object:nerfstudio.configs.base_config.MachineConfig
42
+ device_type: cuda
43
+ dist_url: auto
44
+ machine_rank: 0
45
+ num_devices: 1
46
+ num_machines: 1
47
+ seed: 42
48
+ max_num_iterations: 20000
49
+ method_name: gnerf
50
+ mixed_precision: false
51
+ optimizers:
52
+ fields:
53
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
54
+ _target: &id001 !!python/name:torch.optim.adam.Adam ''
55
+ eps: 1.0e-15
56
+ lr: 0.01
57
+ max_norm: null
58
+ weight_decay: 1.0e-06
59
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
60
+ _target: &id002 !!python/name:gnerf.utils.schedulers.ChainedScheduler ''
61
+ gamma: 0.33
62
+ max_steps: 20000
63
+ milestones: &id003 !!python/tuple
64
+ - 0.5
65
+ - 0.75
66
+ - 0.9
67
+ log_covs:
68
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
69
+ _target: *id001
70
+ eps: 1.0e-15
71
+ lr: 0.001
72
+ max_norm: null
73
+ weight_decay: 0
74
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
75
+ _target: *id002
76
+ gamma: 0.33
77
+ max_steps: 20000
78
+ milestones: *id003
79
+ means:
80
+ optimizer: !!python/object:nerfstudio.engine.optimizers.AdamOptimizerConfig
81
+ _target: *id001
82
+ eps: 1.0e-15
83
+ lr: 1.0e-05
84
+ max_norm: null
85
+ weight_decay: 0
86
+ scheduler: !!python/object:gnerf.utils.schedulers.ChainedSchedulerConfig
87
+ _target: *id002
88
+ gamma: 0.33
89
+ max_steps: 20000
90
+ milestones: *id003
91
+ output_dir: !!python/object/apply:pathlib.PosixPath
92
+ - outputs
93
+ pipeline: !!python/object:gnerf.gnerf_pipeline.GNeRFPipelineConfig
94
+ _target: !!python/name:gnerf.gnerf_pipeline.GNeRFPipeline ''
95
+ datamanager: !!python/object:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManagerConfig
96
+ _target: !!python/name:nerfstudio.data.datamanagers.base_datamanager.VanillaDataManager ''
97
+ camera_optimizer: null
98
+ camera_res_scale_factor: 1.0
99
+ collate_fn: !!python/name:nerfstudio.data.utils.nerfstudio_collate.nerfstudio_collate ''
100
+ data: *id004
101
+ dataparser: !!python/object:nerfstudio.data.dataparsers.nerfstudio_dataparser.NerfstudioDataParserConfig
102
+ _target: !!python/name:nerfstudio.data.dataparsers.nerfstudio_dataparser.Nerfstudio ''
103
+ auto_scale_poses: true
104
+ center_method: poses
105
+ data: !!python/object/apply:pathlib.PosixPath []
106
+ depth_unit_scale_factor: 0.001
107
+ downscale_factor: 4
108
+ eval_interval: 8
109
+ eval_mode: fraction
110
+ load_3D_points: true
111
+ mask_color: null
112
+ orientation_method: up
113
+ scale_factor: 1.0
114
+ scene_scale: 1.0
115
+ train_split_fraction: 0.9
116
+ eval_image_indices: !!python/tuple
117
+ - 0
118
+ eval_num_images_to_sample_from: -1
119
+ eval_num_rays_per_batch: 1024
120
+ eval_num_times_to_repeat_images: -1
121
+ images_on_gpu: false
122
+ masks_on_gpu: false
123
+ patch_size: 1
124
+ pixel_sampler: !!python/object:nerfstudio.data.pixel_samplers.PixelSamplerConfig
125
+ _target: !!python/name:nerfstudio.data.pixel_samplers.PixelSampler ''
126
+ fisheye_crop_radius: null
127
+ ignore_mask: false
128
+ is_equirectangular: false
129
+ keep_full_image: false
130
+ max_num_iterations: 100
131
+ num_rays_per_batch: 4096
132
+ rejection_sample_mask: false
133
+ train_num_images_to_sample_from: -1
134
+ train_num_rays_per_batch: 4096
135
+ train_num_times_to_repeat_images: -1
136
+ max_num_samples_per_ray: 1024
137
+ model: !!python/object:gnerf.gnerf_model.GNeRFModelConfig
138
+ _target: !!python/name:gnerf.gnerf_model.GNeRFModel ''
139
+ alpha_thre: 0.0
140
+ appearance_embedding_dim: 32
141
+ background_color: random
142
+ collider_params: null
143
+ cone_angle: 0.00390625
144
+ densify: true
145
+ disable_scene_contraction: false
146
+ enable_collider: false
147
+ eval_num_rays_per_chunk: 2048
148
+ far_plane: 1000.0
149
+ grid_resolution: 128
150
+ knn_algorithm: !!python/object:gnerf.knn.knn_algorithms.OptixKNNConfig
151
+ _target: !!python/name:gnerf.knn.knn_algorithms.OptixKNN ''
152
+ chi_squared_radius: 2.0
153
+ device: cuda
154
+ n_neighbours: 16
155
+ loss_coefficients:
156
+ rgb_loss_coarse: 1.0
157
+ rgb_loss_fine: 1.0
158
+ max_gb: 20
159
+ near_plane: 0.0
160
+ prompt: null
161
+ prune: true
162
+ render_step_size: 0.005
163
+ unfreeze_means: true
164
+ use_appearance_embedding: false
165
+ use_gradient_scaling: true
166
+ target_num_samples: 262144
167
+ project_name: nerfstudio-project
168
+ prompt: null
169
+ pruning_interval: 1000
170
+ pruning_start_step: 1000
171
+ pruning_stop_step: 15000
172
+ relative_model_dir: !!python/object/apply:pathlib.PosixPath
173
+ - nerfstudio_models
174
+ save_only_latest_checkpoint: true
175
+ steps_per_eval_all_images: 25000
176
+ steps_per_eval_batch: 500
177
+ steps_per_eval_image: 500
178
+ steps_per_save: 100
179
+ timestamp: open_scenes_baseline
180
+ unfreeze_means_step: 500
181
+ use_grad_scaler: false
182
+ viewer: !!python/object:nerfstudio.configs.base_config.ViewerConfig
183
+ camera_frustum_scale: 0.1
184
+ default_composite_depth: true
185
+ image_format: jpeg
186
+ jpeg_quality: 75
187
+ make_share_url: false
188
+ max_num_display_images: 512
189
+ num_rays_per_chunk: 4096
190
+ quit_on_train_completion: false
191
+ relative_log_filename: viewer_log_filename.txt
192
+ websocket_host: 0.0.0.0
193
+ websocket_port: null
194
+ websocket_port_default: 7007
195
+ vis: viewer
data/pirate_flag/train/transforms.json DELETED
@@ -1,3005 +0,0 @@
1
- {
2
- "camera_angle_x": 0.6911112070083618,
3
- "frames": [
4
- {
5
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_0",
6
- "rotation": 0.06283185307179587,
7
- "transform_matrix": [
8
- [
9
- 0.9719895720481873,
10
- 0.07649558037519455,
11
- -0.2222270369529724,
12
- -0.8958257436752319
13
- ],
14
- [
15
- -0.2350243180990219,
16
- 0.316362589597702,
17
- -0.9190638661384583,
18
- -3.704864501953125
19
- ],
20
- [
21
- -7.450580596923828e-09,
22
- 0.9455491304397583,
23
- 0.3254794478416443,
24
- 1.3120495080947876
25
- ],
26
- [
27
- 0.0,
28
- 0.0,
29
- 0.0,
30
- 1.0
31
- ]
32
- ]
33
- },
34
- {
35
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_1",
36
- "rotation": 0.06283185307179587,
37
- "transform_matrix": [
38
- [
39
- -0.7278409600257874,
40
- 0.3725981116294861,
41
- -0.5756893157958984,
42
- -2.3206777572631836
43
- ],
44
- [
45
- -0.685745894908905,
46
- -0.39547035098075867,
47
- 0.6110284328460693,
48
- 2.463134288787842
49
- ],
50
- [
51
- -1.4901159417490817e-08,
52
- 0.839508056640625,
53
- 0.543347179889679,
54
- 2.190302610397339
55
- ],
56
- [
57
- 0.0,
58
- 0.0,
59
- 0.0,
60
- 1.0
61
- ]
62
- ]
63
- },
64
- {
65
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_2",
66
- "rotation": 0.06283185307179587,
67
- "transform_matrix": [
68
- [
69
- -0.7864987850189209,
70
- 0.27947068214416504,
71
- -0.5507410764694214,
72
- -2.2201085090637207
73
- ],
74
- [
75
- -0.6175918579101562,
76
- -0.3559039235115051,
77
- 0.7013648152351379,
78
- 2.8272922039031982
79
- ],
80
- [
81
- 0.0,
82
- 0.8917558193206787,
83
- 0.4525167644023895,
84
- 1.8241536617279053
85
- ],
86
- [
87
- 0.0,
88
- 0.0,
89
- 0.0,
90
- 1.0
91
- ]
92
- ]
93
- },
94
- {
95
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_3",
96
- "rotation": 0.06283185307179587,
97
- "transform_matrix": [
98
- [
99
- -0.9867998361587524,
100
- -0.15784451365470886,
101
- 0.036209773272275925,
102
- 0.14596626162528992
103
- ],
104
- [
105
- 0.16194455325603485,
106
- -0.9618165493011475,
107
- 0.22064219415187836,
108
- 0.8894370794296265
109
- ],
110
- [
111
- 0.0,
112
- 0.223593607544899,
113
- 0.9746824502944946,
114
- 3.929070472717285
115
- ],
116
- [
117
- 0.0,
118
- 0.0,
119
- 0.0,
120
- 1.0
121
- ]
122
- ]
123
- },
124
- {
125
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_4",
126
- "rotation": 0.06283185307179587,
127
- "transform_matrix": [
128
- [
129
- 0.13350410759449005,
130
- 0.5426273941993713,
131
- -0.8292961716651917,
132
- -3.3429999351501465
133
- ],
134
- [
135
- -0.9910483360290527,
136
- 0.07309732586145401,
137
- -0.11171448230743408,
138
- -0.4503355026245117
139
- ],
140
- [
141
- -7.450580596923828e-09,
142
- 0.8367868661880493,
143
- 0.5475286841392517,
144
- 2.2071590423583984
145
- ],
146
- [
147
- 0.0,
148
- 0.0,
149
- 0.0,
150
- 1.0
151
- ]
152
- ]
153
- },
154
- {
155
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_5",
156
- "rotation": 0.06283185307179587,
157
- "transform_matrix": [
158
- [
159
- -0.4321281313896179,
160
- -0.16163372993469238,
161
- 0.8872089385986328,
162
- 3.576453924179077
163
- ],
164
- [
165
- 0.9018123149871826,
166
- -0.07745123654603958,
167
- 0.4251305162906647,
168
- 1.7137560844421387
169
- ],
170
- [
171
- -7.450581485102248e-09,
172
- 0.9838067293167114,
173
- 0.1792321503162384,
174
- 0.7225079536437988
175
- ],
176
- [
177
- 0.0,
178
- 0.0,
179
- 0.0,
180
- 1.0
181
- ]
182
- ]
183
- },
184
- {
185
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_6",
186
- "rotation": 0.06283185307179587,
187
- "transform_matrix": [
188
- [
189
- -0.8844383955001831,
190
- 0.429683655500412,
191
- -0.182046040892601,
192
- -0.7338511347770691
193
- ],
194
- [
195
- -0.4666571319103241,
196
- -0.814363956451416,
197
- 0.34502527117729187,
198
- 1.3908414840698242
199
- ],
200
- [
201
- -1.4901162970204496e-08,
202
- 0.3901066482067108,
203
- 0.9207695722579956,
204
- 3.7117412090301514
205
- ],
206
- [
207
- 0.0,
208
- 0.0,
209
- 0.0,
210
- 1.0
211
- ]
212
- ]
213
- },
214
- {
215
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_7",
216
- "rotation": 0.06283185307179587,
217
- "transform_matrix": [
218
- [
219
- -0.3031907379627228,
220
- -0.5842869877815247,
221
- 0.7527841925621033,
222
- 3.0345702171325684
223
- ],
224
- [
225
- 0.9529299736022949,
226
- -0.1859007477760315,
227
- 0.23951098322868347,
228
- 0.9654996395111084
229
- ],
230
- [
231
- -1.4901162970204496e-08,
232
- 0.789967954158783,
233
- 0.6131479740142822,
234
- 2.4716784954071045
235
- ],
236
- [
237
- 0.0,
238
- 0.0,
239
- 0.0,
240
- 1.0
241
- ]
242
- ]
243
- },
244
- {
245
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_8",
246
- "rotation": 0.06283185307179587,
247
- "transform_matrix": [
248
- [
249
- -0.9219268560409546,
250
- -0.3669237792491913,
251
- 0.12416873127222061,
252
- 0.5005401372909546
253
- ],
254
- [
255
- 0.38736411929130554,
256
- -0.8732788562774658,
257
- 0.29552164673805237,
258
- 1.1912858486175537
259
- ],
260
- [
261
- 0.0,
262
- 0.3205479383468628,
263
- 0.9472323060035706,
264
- 3.818415403366089
265
- ],
266
- [
267
- 0.0,
268
- 0.0,
269
- 0.0,
270
- 1.0
271
- ]
272
- ]
273
- },
274
- {
275
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_9",
276
- "rotation": 0.06283185307179587,
277
- "transform_matrix": [
278
- [
279
- 0.6301818490028381,
280
- -0.3220551311969757,
281
- 0.7065063118934631,
282
- 2.848018169403076
283
- ],
284
- [
285
- 0.7764475345611572,
286
- 0.26138702034950256,
287
- -0.573415994644165,
288
- -2.311514139175415
289
- ],
290
- [
291
- -1.4901161193847656e-08,
292
- 0.9099215269088745,
293
- 0.41478028893470764,
294
- 1.6720330715179443
295
- ],
296
- [
297
- 0.0,
298
- 0.0,
299
- 0.0,
300
- 1.0
301
- ]
302
- ]
303
- },
304
- {
305
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_10",
306
- "rotation": 0.06283185307179587,
307
- "transform_matrix": [
308
- [
309
- -0.9814674854278564,
310
- -0.15969081223011017,
311
- 0.10592634975910187,
312
- 0.42700278759002686
313
- ],
314
- [
315
- 0.19162869453430176,
316
- -0.8178907632827759,
317
- 0.5425245761871338,
318
- 2.1869864463806152
319
- ],
320
- [
321
- -7.450580596923828e-09,
322
- 0.5527687072753906,
323
- 0.8333346843719482,
324
- 3.3592796325683594
325
- ],
326
- [
327
- 0.0,
328
- 0.0,
329
- 0.0,
330
- 1.0
331
- ]
332
- ]
333
- },
334
- {
335
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_11",
336
- "rotation": 0.06283185307179587,
337
- "transform_matrix": [
338
- [
339
- -0.44965508580207825,
340
- -0.24619227647781372,
341
- 0.858603298664093,
342
- 3.4611406326293945
343
- ],
344
- [
345
- 0.8932021856307983,
346
- -0.12393790483474731,
347
- 0.4322373569011688,
348
- 1.7424044609069824
349
- ],
350
- [
351
- -7.450580152834618e-09,
352
- 0.9612641334533691,
353
- 0.27562880516052246,
354
- 1.1110953092575073
355
- ],
356
- [
357
- 0.0,
358
- 0.0,
359
- 0.0,
360
- 1.0
361
- ]
362
- ]
363
- },
364
- {
365
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_12",
366
- "rotation": 0.06283185307179587,
367
- "transform_matrix": [
368
- [
369
- 0.6817365884780884,
370
- -0.28239959478378296,
371
- 0.6748967170715332,
372
- 2.7205958366394043
373
- ],
374
- [
375
- 0.7315976619720459,
376
- 0.2631530165672302,
377
- -0.6288999915122986,
378
- -2.535177230834961
379
- ],
380
- [
381
- -1.4901161193847656e-08,
382
- 0.9224970936775208,
383
- 0.38600388169288635,
384
- 1.556031584739685
385
- ],
386
- [
387
- 0.0,
388
- 0.0,
389
- 0.0,
390
- 1.0
391
- ]
392
- ]
393
- },
394
- {
395
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_13",
396
- "rotation": 0.06283185307179587,
397
- "transform_matrix": [
398
- [
399
- 0.9980076551437378,
400
- -0.053839508444070816,
401
- 0.03289622813463211,
402
- 0.13260893523693085
403
- ],
404
- [
405
- 0.06309401988983154,
406
- 0.8516218066215515,
407
- -0.5203454494476318,
408
- -2.0975797176361084
409
- ],
410
- [
411
- -1.862645371275562e-09,
412
- 0.5213841199874878,
413
- 0.8533219695091248,
414
- 3.4398508071899414
415
- ],
416
- [
417
- 0.0,
418
- 0.0,
419
- 0.0,
420
- 1.0
421
- ]
422
- ]
423
- },
424
- {
425
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_14",
426
- "rotation": 0.06283185307179587,
427
- "transform_matrix": [
428
- [
429
- -0.12775452435016632,
430
- 0.603720486164093,
431
- -0.7868927717208862,
432
- -3.1720662117004395
433
- ],
434
- [
435
- -0.9918057322502136,
436
- -0.07776525616645813,
437
- 0.10135968029499054,
438
- 0.40859395265579224
439
- ],
440
- [
441
- 0.0,
442
- 0.7933939099311829,
443
- 0.608708381652832,
444
- 2.453782081604004
445
- ],
446
- [
447
- 0.0,
448
- 0.0,
449
- 0.0,
450
- 1.0
451
- ]
452
- ]
453
- },
454
- {
455
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_15",
456
- "rotation": 0.06283185307179587,
457
- "transform_matrix": [
458
- [
459
- -0.46584567427635193,
460
- -0.8791487812995911,
461
- 0.10042507946491241,
462
- 0.40482646226882935
463
- ],
464
- [
465
- 0.8848659992218018,
466
- -0.46283578872680664,
467
- 0.052869684994220734,
468
- 0.21312452852725983
469
- ],
470
- [
471
- 0.0,
472
- 0.11349169909954071,
473
- 0.9935388565063477,
474
- 4.0050835609436035
475
- ],
476
- [
477
- 0.0,
478
- 0.0,
479
- 0.0,
480
- 1.0
481
- ]
482
- ]
483
- },
484
- {
485
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_16",
486
- "rotation": 0.06283185307179587,
487
- "transform_matrix": [
488
- [
489
- 0.6117308139801025,
490
- 0.47477099299430847,
491
- -0.6327541470527649,
492
- -2.550713539123535
493
- ],
494
- [
495
- -0.7910659313201904,
496
- 0.36714011430740356,
497
- -0.4893083870410919,
498
- -1.97246515750885
499
- ],
500
- [
501
- 0.0,
502
- 0.7998752593994141,
503
- 0.6001662015914917,
504
- 2.4193472862243652
505
- ],
506
- [
507
- 0.0,
508
- 0.0,
509
- 0.0,
510
- 1.0
511
- ]
512
- ]
513
- },
514
- {
515
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_17",
516
- "rotation": 0.06283185307179587,
517
- "transform_matrix": [
518
- [
519
- 0.9804857969284058,
520
- -0.19053016602993011,
521
- 0.04843547195196152,
522
- 0.19524964690208435
523
- ],
524
- [
525
- 0.1965903341770172,
526
- 0.9502609968185425,
527
- -0.24156983196735382,
528
- -0.9737992286682129
529
- ],
530
- [
531
- 0.0,
532
- 0.2463778704404831,
533
- 0.9691738486289978,
534
- 3.906864881515503
535
- ],
536
- [
537
- 0.0,
538
- 0.0,
539
- 0.0,
540
- 1.0
541
- ]
542
- ]
543
- },
544
- {
545
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_18",
546
- "rotation": 0.06283185307179587,
547
- "transform_matrix": [
548
- [
549
- 0.11604146659374237,
550
- 0.28375449776649475,
551
- -0.9518495798110962,
552
- -3.837028741836548
553
- ],
554
- [
555
- -0.9932443499565125,
556
- 0.03315124660730362,
557
- -0.11120528727769852,
558
- -0.4482828676700592
559
- ],
560
- [
561
- 0.0,
562
- 0.95832359790802,
563
- 0.2856844663619995,
564
- 1.1516309976577759
565
- ],
566
- [
567
- 0.0,
568
- 0.0,
569
- 0.0,
570
- 1.0
571
- ]
572
- ]
573
- },
574
- {
575
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_19",
576
- "rotation": 0.06283185307179587,
577
- "transform_matrix": [
578
- [
579
- -0.4936571419239044,
580
- 0.4160023629665375,
581
- -0.7637044787406921,
582
- -3.0785913467407227
583
- ],
584
- [
585
- -0.8696565628051758,
586
- -0.236142098903656,
587
- 0.4335138499736786,
588
- 1.747550368309021
589
- ],
590
- [
591
- 0.0,
592
- 0.878167986869812,
593
- 0.478352427482605,
594
- 1.928300380706787
595
- ],
596
- [
597
- 0.0,
598
- 0.0,
599
- 0.0,
600
- 1.0
601
- ]
602
- ]
603
- },
604
- {
605
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_20",
606
- "rotation": 0.06283185307179587,
607
- "transform_matrix": [
608
- [
609
- 0.1758819967508316,
610
- -0.8105233907699585,
611
- 0.5586745738983154,
612
- 2.252089262008667
613
- ],
614
- [
615
- 0.9844112992286682,
616
- 0.14481393992900848,
617
- -0.09981682151556015,
618
- -0.4023744761943817
619
- ],
620
- [
621
- 0.0,
622
- 0.5675214529037476,
623
- 0.8233585357666016,
624
- 3.3190643787384033
625
- ],
626
- [
627
- 0.0,
628
- 0.0,
629
- 0.0,
630
- 1.0
631
- ]
632
- ]
633
- },
634
- {
635
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_21",
636
- "rotation": 0.06283185307179587,
637
- "transform_matrix": [
638
- [
639
- 0.2203473150730133,
640
- 0.7455814480781555,
641
- -0.6289319396018982,
642
- -2.5353057384490967
643
- ],
644
- [
645
- -0.9754214882850647,
646
- 0.1684265434741974,
647
- -0.14207546412944794,
648
- -0.5727245211601257
649
- ],
650
- [
651
- 0.0,
652
- 0.6447796821594238,
653
- 0.76436847448349,
654
- 3.081267833709717
655
- ],
656
- [
657
- 0.0,
658
- 0.0,
659
- 0.0,
660
- 1.0
661
- ]
662
- ]
663
- },
664
- {
665
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_22",
666
- "rotation": 0.06283185307179587,
667
- "transform_matrix": [
668
- [
669
- -0.3247849941253662,
670
- 0.22442881762981415,
671
- -0.9187743067741394,
672
- -3.703697919845581
673
- ],
674
- [
675
- -0.945787787437439,
676
- -0.07706920802593231,
677
- 0.31550851464271545,
678
- 1.2718555927276611
679
- ],
680
- [
681
- -7.450580152834618e-09,
682
- 0.9714381694793701,
683
- 0.23729296028614044,
684
- 0.9565585851669312
685
- ],
686
- [
687
- 0.0,
688
- 0.0,
689
- 0.0,
690
- 1.0
691
- ]
692
- ]
693
- },
694
- {
695
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_23",
696
- "rotation": 0.06283185307179587,
697
- "transform_matrix": [
698
- [
699
- 0.9445567727088928,
700
- -0.2064802497625351,
701
- 0.2553004026412964,
702
- 1.029148817062378
703
- ],
704
- [
705
- 0.32834798097610474,
706
- 0.593980610370636,
707
- -0.7344212532043457,
708
- -2.9605467319488525
709
- ],
710
- [
711
- 0.0,
712
- 0.7775298953056335,
713
- 0.6288458704948425,
714
- 2.534958839416504
715
- ],
716
- [
717
- 0.0,
718
- 0.0,
719
- 0.0,
720
- 1.0
721
- ]
722
- ]
723
- },
724
- {
725
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_24",
726
- "rotation": 0.06283185307179587,
727
- "transform_matrix": [
728
- [
729
- 0.3568131923675537,
730
- -0.47686412930488586,
731
- 0.8032962083816528,
732
- 3.2381908893585205
733
- ],
734
- [
735
- 0.9341756701469421,
736
- 0.18214070796966553,
737
- -0.30682310461997986,
738
- -1.2368435859680176
739
- ],
740
- [
741
- 0.0,
742
- 0.8598984479904175,
743
- 0.5104650259017944,
744
- 2.0577504634857178
745
- ],
746
- [
747
- 0.0,
748
- 0.0,
749
- 0.0,
750
- 1.0
751
- ]
752
- ]
753
- },
754
- {
755
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_25",
756
- "rotation": 0.06283185307179587,
757
- "transform_matrix": [
758
- [
759
- 0.9154595136642456,
760
- -0.3241480886936188,
761
- 0.238457590341568,
762
- 0.96125328540802
763
- ],
764
- [
765
- 0.40241026878356934,
766
- 0.7374176383018494,
767
- -0.5424768924713135,
768
- -2.1867942810058594
769
- ],
770
- [
771
- 1.4901161193847656e-08,
772
- 0.5925732851028442,
773
- 0.8055164813995361,
774
- 3.247140884399414
775
- ],
776
- [
777
- 0.0,
778
- 0.0,
779
- 0.0,
780
- 1.0
781
- ]
782
- ]
783
- },
784
- {
785
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_26",
786
- "rotation": 0.06283185307179587,
787
- "transform_matrix": [
788
- [
789
- -0.783277153968811,
790
- -0.2097613662481308,
791
- 0.5852152705192566,
792
- 2.3590784072875977
793
- ],
794
- [
795
- 0.6216725707054138,
796
- -0.26428911089897156,
797
- 0.7373427152633667,
798
- 2.9723238945007324
799
- ],
800
- [
801
- 1.4901161193847656e-08,
802
- 0.9413561224937439,
803
- 0.3374145030975342,
804
- 1.360161542892456
805
- ],
806
- [
807
- 0.0,
808
- 0.0,
809
- 0.0,
810
- 1.0
811
- ]
812
- ]
813
- },
814
- {
815
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_27",
816
- "rotation": 0.06283185307179587,
817
- "transform_matrix": [
818
- [
819
- -0.9473456144332886,
820
- 0.24743522703647614,
821
- -0.20325399935245514,
822
- -0.8193432092666626
823
- ],
824
- [
825
- -0.32021304965019226,
826
- -0.7320334315299988,
827
- 0.6013239622116089,
828
- 2.4240145683288574
829
- ],
830
- [
831
- 0.0,
832
- 0.6347461342811584,
833
- 0.7727205157279968,
834
- 3.114936590194702
835
- ],
836
- [
837
- 0.0,
838
- 0.0,
839
- 0.0,
840
- 1.0
841
- ]
842
- ]
843
- },
844
- {
845
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_28",
846
- "rotation": 0.06283185307179587,
847
- "transform_matrix": [
848
- [
849
- 0.6059809923171997,
850
- 0.7298203706741333,
851
- -0.3164636790752411,
852
- -1.2757060527801514
853
- ],
854
- [
855
- -0.7954791188240051,
856
- 0.555963397026062,
857
- -0.24107606709003448,
858
- -0.9718087911605835
859
- ],
860
- [
861
- 0.0,
862
- 0.39782780408859253,
863
- 0.917460024356842,
864
- 3.698399782180786
865
- ],
866
- [
867
- 0.0,
868
- 0.0,
869
- 0.0,
870
- 1.0
871
- ]
872
- ]
873
- },
874
- {
875
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_29",
876
- "rotation": 0.06283185307179587,
877
- "transform_matrix": [
878
- [
879
- 0.9673736691474915,
880
- 0.18667511641979218,
881
- -0.1712908297777176,
882
- -0.690495491027832
883
- ],
884
- [
885
- -0.2533538043498993,
886
- 0.712776243686676,
887
- -0.6540349125862122,
888
- -2.6364994049072266
889
- ],
890
- [
891
- -7.450580596923828e-09,
892
- 0.6760934591293335,
893
- 0.7368158102035522,
894
- 2.9701998233795166
895
- ],
896
- [
897
- 0.0,
898
- 0.0,
899
- 0.0,
900
- 1.0
901
- ]
902
- ]
903
- },
904
- {
905
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_30",
906
- "rotation": 0.06283185307179587,
907
- "transform_matrix": [
908
- [
909
- 0.5314823389053345,
910
- 0.8469671607017517,
911
- -0.013153810985386372,
912
- -0.05302470922470093
913
- ],
914
- [
915
- -0.8470693826675415,
916
- 0.5314182043075562,
917
- -0.008253183215856552,
918
- -0.033269643783569336
919
- ],
920
- [
921
- -4.656612873077393e-10,
922
- 0.015530066564679146,
923
- 0.9998793601989746,
924
- 4.030642509460449
925
- ],
926
- [
927
- 0.0,
928
- 0.0,
929
- 0.0,
930
- 1.0
931
- ]
932
- ]
933
- },
934
- {
935
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_31",
936
- "rotation": 0.06283185307179587,
937
- "transform_matrix": [
938
- [
939
- -0.2689352035522461,
940
- -0.7056869864463806,
941
- 0.6554994583129883,
942
- 2.6424031257629395
943
- ],
944
- [
945
- 0.9631582498550415,
946
- -0.1970435231924057,
947
- 0.18303003907203674,
948
- 0.7378177642822266
949
- ],
950
- [
951
- 1.4901161193847656e-08,
952
- 0.6805729866027832,
953
- 0.7326802015304565,
954
- 2.953528642654419
955
- ],
956
- [
957
- 0.0,
958
- 0.0,
959
- 0.0,
960
- 1.0
961
- ]
962
- ]
963
- },
964
- {
965
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_32",
966
- "rotation": 0.06283185307179587,
967
- "transform_matrix": [
968
- [
969
- 0.1525958627462387,
970
- 0.9537429213523865,
971
- -0.25901514291763306,
972
- -1.0441235303878784
973
- ],
974
- [
975
- -0.9882887601852417,
976
- 0.1472618281841278,
977
- -0.03999300301074982,
978
- -0.16121695935726166
979
- ],
980
- [
981
- 0.0,
982
- 0.26208439469337463,
983
- 0.9650447964668274,
984
- 3.8902204036712646
985
- ],
986
- [
987
- 0.0,
988
- 0.0,
989
- 0.0,
990
- 1.0
991
- ]
992
- ]
993
- },
994
- {
995
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_33",
996
- "rotation": 0.06283185307179587,
997
- "transform_matrix": [
998
- [
999
- -0.8881415724754333,
1000
- 0.3149119019508362,
1001
- -0.3347161114215851,
1002
- -1.3492838144302368
1003
- ],
1004
- [
1005
- -0.4595698118209839,
1006
- -0.6085829734802246,
1007
- 0.6468555927276611,
1008
- 2.607558250427246
1009
- ],
1010
- [
1011
- 0.0,
1012
- 0.7283247709274292,
1013
- 0.6852320432662964,
1014
- 2.762258529663086
1015
- ],
1016
- [
1017
- 0.0,
1018
- 0.0,
1019
- 0.0,
1020
- 1.0
1021
- ]
1022
- ]
1023
- },
1024
- {
1025
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_34",
1026
- "rotation": 0.06283185307179587,
1027
- "transform_matrix": [
1028
- [
1029
- 0.2216711938381195,
1030
- 0.15314094722270966,
1031
- -0.9630210995674133,
1032
- -3.8820624351501465
1033
- ],
1034
- [
1035
- -0.9751215577125549,
1036
- 0.03481302782893181,
1037
- -0.21892042458057404,
1038
- -0.8824965357780457
1039
- ],
1040
- [
1041
- 0.0,
1042
- 0.9875908493995667,
1043
- 0.1570480763912201,
1044
- 0.6330810785293579
1045
- ],
1046
- [
1047
- 0.0,
1048
- 0.0,
1049
- 0.0,
1050
- 1.0
1051
- ]
1052
- ]
1053
- },
1054
- {
1055
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_35",
1056
- "rotation": 0.06283185307179587,
1057
- "transform_matrix": [
1058
- [
1059
- -0.7046900391578674,
1060
- 0.6468268036842346,
1061
- -0.2915937304496765,
1062
- -1.1754519939422607
1063
- ],
1064
- [
1065
- -0.7095152735710144,
1066
- -0.642427921295166,
1067
- 0.28961068391799927,
1068
- 1.167458176612854
1069
- ],
1070
- [
1071
- 0.0,
1072
- 0.4109761118888855,
1073
- 0.9116461277008057,
1074
- 3.6749632358551025
1075
- ],
1076
- [
1077
- 0.0,
1078
- 0.0,
1079
- 0.0,
1080
- 1.0
1081
- ]
1082
- ]
1083
- },
1084
- {
1085
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_36",
1086
- "rotation": 0.06283185307179587,
1087
- "transform_matrix": [
1088
- [
1089
- -0.6587604284286499,
1090
- 0.5157323479652405,
1091
- -0.5477724075317383,
1092
- -2.208141326904297
1093
- ],
1094
- [
1095
- -0.7523526549339294,
1096
- -0.4515756070613861,
1097
- 0.47962990403175354,
1098
- 1.9334501028060913
1099
- ],
1100
- [
1101
- -1.4901161193847656e-08,
1102
- 0.7280793190002441,
1103
- 0.685492753982544,
1104
- 2.763309955596924
1105
- ],
1106
- [
1107
- 0.0,
1108
- 0.0,
1109
- 0.0,
1110
- 1.0
1111
- ]
1112
- ]
1113
- },
1114
- {
1115
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_37",
1116
- "rotation": 0.06283185307179587,
1117
- "transform_matrix": [
1118
- [
1119
- 0.9485506415367126,
1120
- 0.16070576012134552,
1121
- -0.272810161113739,
1122
- -1.0997331142425537
1123
- ],
1124
- [
1125
- -0.31662556529045105,
1126
- 0.48144426941871643,
1127
- -0.8172879219055176,
1128
- -3.294593334197998
1129
- ],
1130
- [
1131
- 1.4901161193847656e-08,
1132
- 0.8616176247596741,
1133
- 0.50755774974823,
1134
- 2.0460309982299805
1135
- ],
1136
- [
1137
- 0.0,
1138
- 0.0,
1139
- 0.0,
1140
- 1.0
1141
- ]
1142
- ]
1143
- },
1144
- {
1145
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_38",
1146
- "rotation": 0.06283185307179587,
1147
- "transform_matrix": [
1148
- [
1149
- 0.3625607192516327,
1150
- -0.9221646785736084,
1151
- 0.13476629555225372,
1152
- 0.5432603359222412
1153
- ],
1154
- [
1155
- 0.9319601655006409,
1156
- 0.35874998569488525,
1157
- -0.052428167313337326,
1158
- -0.21134470403194427
1159
- ],
1160
- [
1161
- -3.725290298461914e-09,
1162
- 0.14460529386997223,
1163
- 0.9894894361495972,
1164
- 3.9887595176696777
1165
- ],
1166
- [
1167
- 0.0,
1168
- 0.0,
1169
- 0.0,
1170
- 1.0
1171
- ]
1172
- ]
1173
- },
1174
- {
1175
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_39",
1176
- "rotation": 0.06283185307179587,
1177
- "transform_matrix": [
1178
- [
1179
- 0.7424758076667786,
1180
- 0.35094666481018066,
1181
- -0.5705838799476624,
1182
- -2.3000974655151367
1183
- ],
1184
- [
1185
- -0.6698728203773499,
1186
- 0.3889833986759186,
1187
- -0.6324256062507629,
1188
- -2.549389362335205
1189
- ],
1190
- [
1191
- 0.0,
1192
- 0.8517795205116272,
1193
- 0.5239003300666809,
1194
- 2.111910104751587
1195
- ],
1196
- [
1197
- 0.0,
1198
- 0.0,
1199
- 0.0,
1200
- 1.0
1201
- ]
1202
- ]
1203
- },
1204
- {
1205
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_40",
1206
- "rotation": 0.06283185307179587,
1207
- "transform_matrix": [
1208
- [
1209
- 0.9376919269561768,
1210
- 0.337600439786911,
1211
- -0.08221634477376938,
1212
- -0.33142468333244324
1213
- ],
1214
- [
1215
- -0.347467303276062,
1216
- 0.9110648036003113,
1217
- -0.2218729704618454,
1218
- -0.89439857006073
1219
- ],
1220
- [
1221
- 7.450578820566989e-09,
1222
- 0.23661594092845917,
1223
- 0.9716032147407532,
1224
- 3.9166579246520996
1225
- ],
1226
- [
1227
- 0.0,
1228
- 0.0,
1229
- 0.0,
1230
- 1.0
1231
- ]
1232
- ]
1233
- },
1234
- {
1235
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_41",
1236
- "rotation": 0.06283185307179587,
1237
- "transform_matrix": [
1238
- [
1239
- 0.4099404215812683,
1240
- 0.30508577823638916,
1241
- -0.8595763444900513,
1242
- -3.4650630950927734
1243
- ],
1244
- [
1245
- -0.912112295627594,
1246
- 0.13711798191070557,
1247
- -0.3863286077976227,
1248
- -1.557340383529663
1249
- ],
1250
- [
1251
- 7.450580596923828e-09,
1252
- 0.9424018263816833,
1253
- 0.33448272943496704,
1254
- 1.348343014717102
1255
- ],
1256
- [
1257
- 0.0,
1258
- 0.0,
1259
- 0.0,
1260
- 1.0
1261
- ]
1262
- ]
1263
- },
1264
- {
1265
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_42",
1266
- "rotation": 0.06283185307179587,
1267
- "transform_matrix": [
1268
- [
1269
- -0.478212833404541,
1270
- -0.3224875032901764,
1271
- 0.8168930411338806,
1272
- 3.293001413345337
1273
- ],
1274
- [
1275
- 0.8782440423965454,
1276
- -0.17559771239757538,
1277
- 0.4448065757751465,
1278
- 1.7930728197097778
1279
- ],
1280
- [
1281
- -1.4901161193847656e-08,
1282
- 0.9301437735557556,
1283
- 0.3671956956386566,
1284
- 1.4802132844924927
1285
- ],
1286
- [
1287
- 0.0,
1288
- 0.0,
1289
- 0.0,
1290
- 1.0
1291
- ]
1292
- ]
1293
- },
1294
- {
1295
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_43",
1296
- "rotation": 0.06283185307179587,
1297
- "transform_matrix": [
1298
- [
1299
- 0.7750111222267151,
1300
- -0.2507742941379547,
1301
- 0.5800602436065674,
1302
- 2.3382976055145264
1303
- ],
1304
- [
1305
- 0.6319475173950195,
1306
- 0.3075459599494934,
1307
- -0.7113774418830872,
1308
- -2.8676540851593018
1309
- ],
1310
- [
1311
- 0.0,
1312
- 0.9178930521011353,
1313
- 0.3968277871608734,
1314
- 1.5996639728546143
1315
- ],
1316
- [
1317
- 0.0,
1318
- 0.0,
1319
- 0.0,
1320
- 1.0
1321
- ]
1322
- ]
1323
- },
1324
- {
1325
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_44",
1326
- "rotation": 0.06283185307179587,
1327
- "transform_matrix": [
1328
- [
1329
- -0.20046335458755493,
1330
- -0.26931294798851013,
1331
- 0.9419580101966858,
1332
- 3.797154188156128
1333
- ],
1334
- [
1335
- 0.9797011613845825,
1336
- -0.055105969309806824,
1337
- 0.19274048507213593,
1338
- 0.7769618034362793
1339
- ],
1340
- [
1341
- 0.0,
1342
- 0.9614748358726501,
1343
- 0.2748929262161255,
1344
- 1.1081287860870361
1345
- ],
1346
- [
1347
- 0.0,
1348
- 0.0,
1349
- 0.0,
1350
- 1.0
1351
- ]
1352
- ]
1353
- },
1354
- {
1355
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_45",
1356
- "rotation": 0.06283185307179587,
1357
- "transform_matrix": [
1358
- [
1359
- -0.9920453429222107,
1360
- 0.1257016658782959,
1361
- -0.0067239319905638695,
1362
- -0.02710503712296486
1363
- ],
1364
- [
1365
- -0.1258814036846161,
1366
- -0.9906289577484131,
1367
- 0.05298992618918419,
1368
- 0.2136092185974121
1369
- ],
1370
- [
1371
- 4.656613428188905e-10,
1372
- 0.05341503396630287,
1373
- 0.9985723495483398,
1374
- 4.025373935699463
1375
- ],
1376
- [
1377
- 0.0,
1378
- 0.0,
1379
- 0.0,
1380
- 1.0
1381
- ]
1382
- ]
1383
- },
1384
- {
1385
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_46",
1386
- "rotation": 0.06283185307179587,
1387
- "transform_matrix": [
1388
- [
1389
- 0.8664535284042358,
1390
- 0.14163364470005035,
1391
- -0.4787465035915375,
1392
- -1.9298889636993408
1393
- ],
1394
- [
1395
- -0.49925780296325684,
1396
- 0.24580281972885132,
1397
- -0.8308565020561218,
1398
- -3.349289894104004
1399
- ],
1400
- [
1401
- 0.0,
1402
- 0.9589164853096008,
1403
- 0.28368836641311646,
1404
- 1.1435844898223877
1405
- ],
1406
- [
1407
- 0.0,
1408
- 0.0,
1409
- 0.0,
1410
- 1.0
1411
- ]
1412
- ]
1413
- },
1414
- {
1415
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_47",
1416
- "rotation": 0.06283185307179587,
1417
- "transform_matrix": [
1418
- [
1419
- -0.019537171348929405,
1420
- -0.7782447338104248,
1421
- 0.6276570558547974,
1422
- 2.5301661491394043
1423
- ],
1424
- [
1425
- 0.9998090863227844,
1426
- -0.015207604505121708,
1427
- 0.012264983728528023,
1428
- 0.04944172501564026
1429
- ],
1430
- [
1431
- 1.8626450382086546e-09,
1432
- 0.6277768611907959,
1433
- 0.7783934473991394,
1434
- 3.1378040313720703
1435
- ],
1436
- [
1437
- 0.0,
1438
- 0.0,
1439
- 0.0,
1440
- 1.0
1441
- ]
1442
- ]
1443
- },
1444
- {
1445
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_48",
1446
- "rotation": 0.06283185307179587,
1447
- "transform_matrix": [
1448
- [
1449
- 0.2471800148487091,
1450
- 0.8873060941696167,
1451
- -0.3893454670906067,
1452
- -1.5695018768310547
1453
- ],
1454
- [
1455
- -0.9689695835113525,
1456
- 0.22634799778461456,
1457
- -0.09932037442922592,
1458
- -0.40037328004837036
1459
- ],
1460
- [
1461
- -7.4505797087454084e-09,
1462
- 0.4018140733242035,
1463
- 0.9157212972640991,
1464
- 3.6913907527923584
1465
- ],
1466
- [
1467
- 0.0,
1468
- 0.0,
1469
- 0.0,
1470
- 1.0
1471
- ]
1472
- ]
1473
- },
1474
- {
1475
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_49",
1476
- "rotation": 0.06283185307179587,
1477
- "transform_matrix": [
1478
- [
1479
- -0.9395476579666138,
1480
- -0.10406691581010818,
1481
- 0.32622119784355164,
1482
- 1.315039873123169
1483
- ],
1484
- [
1485
- 0.34241822361946106,
1486
- -0.2855450510978699,
1487
- 0.8951053619384766,
1488
- 3.608285427093506
1489
- ],
1490
- [
1491
- -7.450581485102248e-09,
1492
- 0.952698290348053,
1493
- 0.3039175570011139,
1494
- 1.2251310348510742
1495
- ],
1496
- [
1497
- 0.0,
1498
- 0.0,
1499
- 0.0,
1500
- 1.0
1501
- ]
1502
- ]
1503
- },
1504
- {
1505
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_50",
1506
- "rotation": 0.06283185307179587,
1507
- "transform_matrix": [
1508
- [
1509
- -0.7867971658706665,
1510
- 0.1994628608226776,
1511
- -0.5840931534767151,
1512
- -2.3545548915863037
1513
- ],
1514
- [
1515
- -0.6172116994857788,
1516
- -0.2542673945426941,
1517
- 0.7445789575576782,
1518
- 3.0014936923980713
1519
- ],
1520
- [
1521
- 0.0,
1522
- 0.9463418126106262,
1523
- 0.323167622089386,
1524
- 1.3027303218841553
1525
- ],
1526
- [
1527
- 0.0,
1528
- 0.0,
1529
- 0.0,
1530
- 1.0
1531
- ]
1532
- ]
1533
- },
1534
- {
1535
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_51",
1536
- "rotation": 0.06283185307179587,
1537
- "transform_matrix": [
1538
- [
1539
- 0.996528148651123,
1540
- 0.06562576442956924,
1541
- -0.05123298615217209,
1542
- -0.2065267711877823
1543
- ],
1544
- [
1545
- -0.08325598388910294,
1546
- 0.785504162311554,
1547
- -0.6132305264472961,
1548
- -2.4720113277435303
1549
- ],
1550
- [
1551
- 0.0,
1552
- 0.6153669357299805,
1553
- 0.7882407903671265,
1554
- 3.1775002479553223
1555
- ],
1556
- [
1557
- 0.0,
1558
- 0.0,
1559
- 0.0,
1560
- 1.0
1561
- ]
1562
- ]
1563
- },
1564
- {
1565
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_52",
1566
- "rotation": 0.06283185307179587,
1567
- "transform_matrix": [
1568
- [
1569
- 0.5703749060630798,
1570
- 0.5046137571334839,
1571
- -0.6481028199195862,
1572
- -2.612586259841919
1573
- ],
1574
- [
1575
- -0.8213843703269958,
1576
- 0.3504072427749634,
1577
- -0.4500470757484436,
1578
- -1.8141978979110718
1579
- ],
1580
- [
1581
- -2.9802320611338473e-08,
1582
- 0.7890371084213257,
1583
- 0.6143453121185303,
1584
- 2.4765055179595947
1585
- ],
1586
- [
1587
- 0.0,
1588
- 0.0,
1589
- 0.0,
1590
- 1.0
1591
- ]
1592
- ]
1593
- },
1594
- {
1595
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_53",
1596
- "rotation": 0.06283185307179587,
1597
- "transform_matrix": [
1598
- [
1599
- -0.9966066479682922,
1600
- 0.060292452573776245,
1601
- -0.0560358427464962,
1602
- -0.2258877158164978
1603
- ],
1604
- [
1605
- -0.08231158554553986,
1606
- -0.7300049066543579,
1607
- 0.6784669756889343,
1608
- 2.734988212585449
1609
- ],
1610
- [
1611
- -3.725290298461914e-09,
1612
- 0.6807771325111389,
1613
- 0.7324904799461365,
1614
- 2.952763795852661
1615
- ],
1616
- [
1617
- 0.0,
1618
- 0.0,
1619
- 0.0,
1620
- 1.0
1621
- ]
1622
- ]
1623
- },
1624
- {
1625
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_54",
1626
- "rotation": 0.06283185307179587,
1627
- "transform_matrix": [
1628
- [
1629
- 0.005480249412357807,
1630
- -0.4604107737541199,
1631
- 0.8876890540122986,
1632
- 3.5783889293670654
1633
- ],
1634
- [
1635
- 0.9999849200248718,
1636
- 0.00252320384606719,
1637
- -0.004864830989390612,
1638
- -0.019610760733485222
1639
- ],
1640
- [
1641
- 2.3283062977608182e-10,
1642
- 0.8877022862434387,
1643
- 0.460417777299881,
1644
- 1.8560034036636353
1645
- ],
1646
- [
1647
- 0.0,
1648
- 0.0,
1649
- 0.0,
1650
- 1.0
1651
- ]
1652
- ]
1653
- },
1654
- {
1655
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_55",
1656
- "rotation": 0.06283185307179587,
1657
- "transform_matrix": [
1658
- [
1659
- 0.9938632249832153,
1660
- 0.06336943060159683,
1661
- -0.09066598862409592,
1662
- -0.3654863238334656
1663
- ],
1664
- [
1665
- -0.11061649024486542,
1666
- 0.5693594813346863,
1667
- -0.814612627029419,
1668
- -3.283808708190918
1669
- ],
1670
- [
1671
- 3.725290298461914e-09,
1672
- 0.8196427226066589,
1673
- 0.5728750228881836,
1674
- 2.309333324432373
1675
- ],
1676
- [
1677
- 0.0,
1678
- 0.0,
1679
- 0.0,
1680
- 1.0
1681
- ]
1682
- ]
1683
- },
1684
- {
1685
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_56",
1686
- "rotation": 0.06283185307179587,
1687
- "transform_matrix": [
1688
- [
1689
- 0.8343064188957214,
1690
- -0.15910761058330536,
1691
- 0.5278424024581909,
1692
- 2.127800941467285
1693
- ],
1694
- [
1695
- 0.551301121711731,
1696
- 0.24078403413295746,
1697
- -0.7988053560256958,
1698
- -3.220087766647339
1699
- ],
1700
- [
1701
- -1.4901161193847656e-08,
1702
- 0.9574486613273621,
1703
- 0.28860384225845337,
1704
- 1.1633994579315186
1705
- ],
1706
- [
1707
- 0.0,
1708
- 0.0,
1709
- 0.0,
1710
- 1.0
1711
- ]
1712
- ]
1713
- },
1714
- {
1715
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_57",
1716
- "rotation": 0.06283185307179587,
1717
- "transform_matrix": [
1718
- [
1719
- 0.9458622336387634,
1720
- 0.06143045797944069,
1721
- -0.31870192289352417,
1722
- -1.2847285270690918
1723
- ],
1724
- [
1725
- -0.32456836104393005,
1726
- 0.17902159690856934,
1727
- -0.9287661910057068,
1728
- -3.74397611618042
1729
- ],
1730
- [
1731
- -3.725290298461914e-09,
1732
- 0.981925368309021,
1733
- 0.18926818668842316,
1734
- 0.7629644274711609
1735
- ],
1736
- [
1737
- 0.0,
1738
- 0.0,
1739
- 0.0,
1740
- 1.0
1741
- ]
1742
- ]
1743
- },
1744
- {
1745
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_58",
1746
- "rotation": 0.06283185307179587,
1747
- "transform_matrix": [
1748
- [
1749
- -0.3637198209762573,
1750
- 0.401373028755188,
1751
- -0.840599536895752,
1752
- -3.3885650634765625
1753
- ],
1754
- [
1755
- -0.9315083622932434,
1756
- -0.15672142803668976,
1757
- 0.32822325825691223,
1758
- 1.3231102228164673
1759
- ],
1760
- [
1761
- 0.0,
1762
- 0.9024068117141724,
1763
- 0.43088504672050476,
1764
- 1.7369531393051147
1765
- ],
1766
- [
1767
- 0.0,
1768
- 0.0,
1769
- 0.0,
1770
- 1.0
1771
- ]
1772
- ]
1773
- },
1774
- {
1775
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_59",
1776
- "rotation": 0.06283185307179587,
1777
- "transform_matrix": [
1778
- [
1779
- -0.7641852498054504,
1780
- -0.5925607085227966,
1781
- 0.25474026799201965,
1782
- 1.0268908739089966
1783
- ],
1784
- [
1785
- 0.644996702671051,
1786
- -0.7020596861839294,
1787
- 0.301813542842865,
1788
- 1.2166492938995361
1789
- ],
1790
- [
1791
- 2.9802320611338473e-08,
1792
- 0.39494800567626953,
1793
- 0.9187033772468567,
1794
- 3.703411817550659
1795
- ],
1796
- [
1797
- 0.0,
1798
- 0.0,
1799
- 0.0,
1800
- 1.0
1801
- ]
1802
- ]
1803
- },
1804
- {
1805
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_60",
1806
- "rotation": 0.06283185307179587,
1807
- "transform_matrix": [
1808
- [
1809
- 0.4936883747577667,
1810
- -0.4711107909679413,
1811
- 0.7309763431549072,
1812
- 2.946659803390503
1813
- ],
1814
- [
1815
- 0.8696389198303223,
1816
- 0.26744651794433594,
1817
- -0.4149705171585083,
1818
- -1.6727997064590454
1819
- ],
1820
- [
1821
- 0.0,
1822
- 0.840551495552063,
1823
- 0.5417315363883972,
1824
- 2.1837897300720215
1825
- ],
1826
- [
1827
- 0.0,
1828
- 0.0,
1829
- 0.0,
1830
- 1.0
1831
- ]
1832
- ]
1833
- },
1834
- {
1835
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_61",
1836
- "rotation": 0.06283185307179587,
1837
- "transform_matrix": [
1838
- [
1839
- 0.8239285945892334,
1840
- 0.3033706843852997,
1841
- -0.4786522388458252,
1842
- -1.9295090436935425
1843
- ],
1844
- [
1845
- -0.5666937828063965,
1846
- 0.441077321767807,
1847
- -0.6959230303764343,
1848
- -2.8053557872772217
1849
- ],
1850
- [
1851
- -1.4901162970204496e-08,
1852
- 0.8446400165557861,
1853
- 0.5353344678878784,
1854
- 2.1580026149749756
1855
- ],
1856
- [
1857
- 0.0,
1858
- 0.0,
1859
- 0.0,
1860
- 1.0
1861
- ]
1862
- ]
1863
- },
1864
- {
1865
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_62",
1866
- "rotation": 0.06283185307179587,
1867
- "transform_matrix": [
1868
- [
1869
- 0.13379386067390442,
1870
- -0.8194224238395691,
1871
- 0.5573564171791077,
1872
- 2.2467756271362305
1873
- ],
1874
- [
1875
- 0.9910091757774353,
1876
- 0.11062832176685333,
1877
- -0.0752473995089531,
1878
- -0.30333197116851807
1879
- ],
1880
- [
1881
- 0.0,
1882
- 0.5624129176139832,
1883
- 0.8268564343452454,
1884
- 3.333164930343628
1885
- ],
1886
- [
1887
- 0.0,
1888
- 0.0,
1889
- 0.0,
1890
- 1.0
1891
- ]
1892
- ]
1893
- },
1894
- {
1895
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_63",
1896
- "rotation": 0.06283185307179587,
1897
- "transform_matrix": [
1898
- [
1899
- -0.8470222353935242,
1900
- -0.5191196799278259,
1901
- 0.11431454122066498,
1902
- 0.4608166515827179
1903
- ],
1904
- [
1905
- 0.5315572023391724,
1906
- -0.8272034525871277,
1907
- 0.18215718865394592,
1908
- 0.7342991232872009
1909
- ],
1910
- [
1911
- 0.0,
1912
- 0.21505610644817352,
1913
- 0.976601779460907,
1914
- 3.936807632446289
1915
- ],
1916
- [
1917
- 0.0,
1918
- 0.0,
1919
- 0.0,
1920
- 1.0
1921
- ]
1922
- ]
1923
- },
1924
- {
1925
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_64",
1926
- "rotation": 0.06283185307179587,
1927
- "transform_matrix": [
1928
- [
1929
- 0.8514102697372437,
1930
- -0.48340147733688354,
1931
- 0.203527569770813,
1932
- 0.8204459547996521
1933
- ],
1934
- [
1935
- 0.5245001316070557,
1936
- 0.7846956253051758,
1937
- -0.3303821086883545,
1938
- -1.3318129777908325
1939
- ],
1940
- [
1941
- 1.4901160305669237e-08,
1942
- 0.3880409598350525,
1943
- 0.9216420650482178,
1944
- 3.7152581214904785
1945
- ],
1946
- [
1947
- 0.0,
1948
- 0.0,
1949
- 0.0,
1950
- 1.0
1951
- ]
1952
- ]
1953
- },
1954
- {
1955
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_65",
1956
- "rotation": 0.06283185307179587,
1957
- "transform_matrix": [
1958
- [
1959
- 0.7626248598098755,
1960
- -0.21123461425304413,
1961
- 0.6113781332969666,
1962
- 2.4645438194274902
1963
- ],
1964
- [
1965
- 0.6468409299850464,
1966
- 0.2490454465150833,
1967
- -0.7208142876625061,
1968
- -2.9056949615478516
1969
- ],
1970
- [
1971
- 0.0,
1972
- 0.945175290107727,
1973
- 0.3265634775161743,
1974
- 1.3164193630218506
1975
- ],
1976
- [
1977
- 0.0,
1978
- 0.0,
1979
- 0.0,
1980
- 1.0
1981
- ]
1982
- ]
1983
- },
1984
- {
1985
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_66",
1986
- "rotation": 0.06283185307179587,
1987
- "transform_matrix": [
1988
- [
1989
- 0.9940101504325867,
1990
- -0.09694286435842514,
1991
- 0.05045628547668457,
1992
- 0.2033957839012146
1993
- ],
1994
- [
1995
- 0.10928749293088913,
1996
- 0.8817312121391296,
1997
- -0.45891860127449036,
1998
- -1.8499599695205688
1999
- ],
2000
- [
2001
- 0.0,
2002
- 0.46168383955955505,
2003
- 0.8870444893836975,
2004
- 3.5757904052734375
2005
- ],
2006
- [
2007
- 0.0,
2008
- 0.0,
2009
- 0.0,
2010
- 1.0
2011
- ]
2012
- ]
2013
- },
2014
- {
2015
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_67",
2016
- "rotation": 0.06283185307179587,
2017
- "transform_matrix": [
2018
- [
2019
- -0.4831806421279907,
2020
- 0.28181999921798706,
2021
- -0.8289233446121216,
2022
- -3.3414969444274902
2023
- ],
2024
- [
2025
- -0.8755207061767578,
2026
- -0.15553027391433716,
2027
- 0.4574646055698395,
2028
- 1.8440988063812256
2029
- ],
2030
- [
2031
- 0.0,
2032
- 0.9467774629592896,
2033
- 0.3218885064125061,
2034
- 1.2975740432739258
2035
- ],
2036
- [
2037
- 0.0,
2038
- 0.0,
2039
- 0.0,
2040
- 1.0
2041
- ]
2042
- ]
2043
- },
2044
- {
2045
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_68",
2046
- "rotation": 0.06283185307179587,
2047
- "transform_matrix": [
2048
- [
2049
- 0.5874632596969604,
2050
- -0.275043249130249,
2051
- 0.7610769271850586,
2052
- 3.0679993629455566
2053
- ],
2054
- [
2055
- 0.8092509508132935,
2056
- 0.1996634155511856,
2057
- -0.552492082118988,
2058
- -2.2271671295166016
2059
- ],
2060
- [
2061
- 1.4901161193847656e-08,
2062
- 0.9404709935188293,
2063
- 0.33987388014793396,
2064
- 1.3700755834579468
2065
- ],
2066
- [
2067
- 0.0,
2068
- 0.0,
2069
- 0.0,
2070
- 1.0
2071
- ]
2072
- ]
2073
- },
2074
- {
2075
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_69",
2076
- "rotation": 0.06283185307179587,
2077
- "transform_matrix": [
2078
- [
2079
- -0.28432145714759827,
2080
- -0.27294471859931946,
2081
- 0.9190551042556763,
2082
- 3.7048299312591553
2083
- ],
2084
- [
2085
- 0.958729088306427,
2086
- -0.0809447169303894,
2087
- 0.27255573868751526,
2088
- 1.0987074375152588
2089
- ],
2090
- [
2091
- 0.0,
2092
- 0.9586182236671448,
2093
- 0.2846943438053131,
2094
- 1.1476397514343262
2095
- ],
2096
- [
2097
- 0.0,
2098
- 0.0,
2099
- 0.0,
2100
- 1.0
2101
- ]
2102
- ]
2103
- },
2104
- {
2105
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_70",
2106
- "rotation": 0.06283185307179587,
2107
- "transform_matrix": [
2108
- [
2109
- -0.9982531666755676,
2110
- 0.04316011816263199,
2111
- -0.04034840688109398,
2112
- -0.16264963150024414
2113
- ],
2114
- [
2115
- -0.05908291041851044,
2116
- -0.7292248606681824,
2117
- 0.6817187070846558,
2118
- 2.748095989227295
2119
- ],
2120
- [
2121
- -1.862645371275562e-09,
2122
- 0.6829115748405457,
2123
- 0.7305009961128235,
2124
- 2.9447436332702637
2125
- ],
2126
- [
2127
- 0.0,
2128
- 0.0,
2129
- 0.0,
2130
- 1.0
2131
- ]
2132
- ]
2133
- },
2134
- {
2135
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_71",
2136
- "rotation": 0.06283185307179587,
2137
- "transform_matrix": [
2138
- [
2139
- -0.8489508628845215,
2140
- 0.4330032169818878,
2141
- -0.30296969413757324,
2142
- -1.221310019493103
2143
- ],
2144
- [
2145
- -0.5284717679023743,
2146
- -0.6955876350402832,
2147
- 0.4866984188556671,
2148
- 1.9619442224502563
2149
- ],
2150
- [
2151
- 0.0,
2152
- 0.573293924331665,
2153
- 0.8193495869636536,
2154
- 3.3029041290283203
2155
- ],
2156
- [
2157
- 0.0,
2158
- 0.0,
2159
- 0.0,
2160
- 1.0
2161
- ]
2162
- ]
2163
- },
2164
- {
2165
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_72",
2166
- "rotation": 0.06283185307179587,
2167
- "transform_matrix": [
2168
- [
2169
- -0.36281347274780273,
2170
- 0.8845916986465454,
2171
- -0.29302528500556946,
2172
- -1.181222677230835
2173
- ],
2174
- [
2175
- -0.9318617582321167,
2176
- -0.3444092571735382,
2177
- 0.11408723890781403,
2178
- 0.4599003791809082
2179
- ],
2180
- [
2181
- 7.450580152834618e-09,
2182
- 0.31445157527923584,
2183
- 0.9492735862731934,
2184
- 3.8266441822052
2185
- ],
2186
- [
2187
- 0.0,
2188
- 0.0,
2189
- 0.0,
2190
- 1.0
2191
- ]
2192
- ]
2193
- },
2194
- {
2195
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_73",
2196
- "rotation": 0.06283185307179587,
2197
- "transform_matrix": [
2198
- [
2199
- -0.40546363592147827,
2200
- 0.27698150277137756,
2201
- -0.8711374402046204,
2202
- -3.511667251586914
2203
- ],
2204
- [
2205
- -0.9141111373901367,
2206
- -0.12285806983709335,
2207
- 0.3864022195339203,
2208
- 1.5576372146606445
2209
- ],
2210
- [
2211
- 7.450580152834618e-09,
2212
- 0.9529885053634644,
2213
- 0.3030063509941101,
2214
- 1.2214577198028564
2215
- ],
2216
- [
2217
- 0.0,
2218
- 0.0,
2219
- 0.0,
2220
- 1.0
2221
- ]
2222
- ]
2223
- },
2224
- {
2225
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_74",
2226
- "rotation": 0.06283185307179587,
2227
- "transform_matrix": [
2228
- [
2229
- -0.917123556137085,
2230
- 0.2904980778694153,
2231
- -0.27293816208839417,
2232
- -1.1002490520477295
2233
- ],
2234
- [
2235
- -0.3986031115055084,
2236
- -0.6683908104896545,
2237
- 0.6279881596565247,
2238
- 2.531501531600952
2239
- ],
2240
- [
2241
- 0.0,
2242
- 0.6847367286682129,
2243
- 0.7287903428077698,
2244
- 2.9378480911254883
2245
- ],
2246
- [
2247
- 0.0,
2248
- 0.0,
2249
- 0.0,
2250
- 1.0
2251
- ]
2252
- ]
2253
- },
2254
- {
2255
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_75",
2256
- "rotation": 0.06283185307179587,
2257
- "transform_matrix": [
2258
- [
2259
- 0.8810421824455261,
2260
- -0.12337788194417953,
2261
- 0.4566646218299866,
2262
- 1.8408740758895874
2263
- ],
2264
- [
2265
- 0.4730377495288849,
2266
- 0.2297937422990799,
2267
- -0.8505468964576721,
2268
- -3.428664445877075
2269
- ],
2270
- [
2271
- 0.0,
2272
- 0.9653872847557068,
2273
- 0.26082032918930054,
2274
- 1.0514005422592163
2275
- ],
2276
- [
2277
- 0.0,
2278
- 0.0,
2279
- 0.0,
2280
- 1.0
2281
- ]
2282
- ]
2283
- },
2284
- {
2285
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_76",
2286
- "rotation": 0.06283185307179587,
2287
- "transform_matrix": [
2288
- [
2289
- -0.5526307225227356,
2290
- 0.7273481488227844,
2291
- -0.40689539909362793,
2292
- -1.6402479410171509
2293
- ],
2294
- [
2295
- -0.8334263563156128,
2296
- -0.48229214549064636,
2297
- 0.269805371761322,
2298
- 1.0876203775405884
2299
- ],
2300
- [
2301
- 0.0,
2302
- 0.48822006583213806,
2303
- 0.87272047996521,
2304
- 3.5180490016937256
2305
- ],
2306
- [
2307
- 0.0,
2308
- 0.0,
2309
- 0.0,
2310
- 1.0
2311
- ]
2312
- ]
2313
- },
2314
- {
2315
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_77",
2316
- "rotation": 0.06283185307179587,
2317
- "transform_matrix": [
2318
- [
2319
- -0.6015447378158569,
2320
- -0.3978673219680786,
2321
- 0.6927087903022766,
2322
- 2.792398452758789
2323
- ],
2324
- [
2325
- 0.7988391518592834,
2326
- -0.29960349202156067,
2327
- 0.5216261148452759,
2328
- 2.1027421951293945
2329
- ],
2330
- [
2331
- 0.0,
2332
- 0.8671442866325378,
2333
- 0.49805691838264465,
2334
- 2.0077316761016846
2335
- ],
2336
- [
2337
- 0.0,
2338
- 0.0,
2339
- 0.0,
2340
- 1.0
2341
- ]
2342
- ]
2343
- },
2344
- {
2345
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_78",
2346
- "rotation": 0.06283185307179587,
2347
- "transform_matrix": [
2348
- [
2349
- -0.8200681209564209,
2350
- 0.44735074043273926,
2351
- -0.3568832278251648,
2352
- -1.4386422634124756
2353
- ],
2354
- [
2355
- -0.5722659826278687,
2356
- -0.6410622000694275,
2357
- 0.511420488357544,
2358
- 2.0616018772125244
2359
- ],
2360
- [
2361
- -1.4901161193847656e-08,
2362
- 0.6236317157745361,
2363
- 0.7817182540893555,
2364
- 3.1512069702148438
2365
- ],
2366
- [
2367
- 0.0,
2368
- 0.0,
2369
- 0.0,
2370
- 1.0
2371
- ]
2372
- ]
2373
- },
2374
- {
2375
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_79",
2376
- "rotation": 0.06283185307179587,
2377
- "transform_matrix": [
2378
- [
2379
- -0.2783367335796356,
2380
- 0.6024183034896851,
2381
- -0.7480780482292175,
2382
- -3.015599250793457
2383
- ],
2384
- [
2385
- -0.9604834914207458,
2386
- -0.17457370460033417,
2387
- 0.21678417921066284,
2388
- 0.8738850355148315
2389
- ],
2390
- [
2391
- 0.0,
2392
- 0.7788556814193726,
2393
- 0.627203106880188,
2394
- 2.528336763381958
2395
- ],
2396
- [
2397
- 0.0,
2398
- 0.0,
2399
- 0.0,
2400
- 1.0
2401
- ]
2402
- ]
2403
- },
2404
- {
2405
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_80",
2406
- "rotation": 0.06283185307179587,
2407
- "transform_matrix": [
2408
- [
2409
- 0.1656382977962494,
2410
- -0.8863168954849243,
2411
- 0.43244221806526184,
2412
- 1.7432303428649902
2413
- ],
2414
- [
2415
- 0.9861866235733032,
2416
- 0.14886432886123657,
2417
- -0.07263228297233582,
2418
- -0.29279008507728577
2419
- ],
2420
- [
2421
- -7.450580596923828e-09,
2422
- 0.438499391078949,
2423
- 0.8987314701080322,
2424
- 3.6229023933410645
2425
- ],
2426
- [
2427
- 0.0,
2428
- 0.0,
2429
- 0.0,
2430
- 1.0
2431
- ]
2432
- ]
2433
- },
2434
- {
2435
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_81",
2436
- "rotation": 0.06283185307179587,
2437
- "transform_matrix": [
2438
- [
2439
- 0.23432859778404236,
2440
- -0.8320841193199158,
2441
- 0.5027187466621399,
2442
- 2.026524066925049
2443
- ],
2444
- [
2445
- 0.97215735912323,
2446
- 0.2005653828382492,
2447
- -0.12117522954940796,
2448
- -0.48847293853759766
2449
- ],
2450
- [
2451
- 0.0,
2452
- 0.5171166658401489,
2453
- 0.8559149503707886,
2454
- 3.450303316116333
2455
- ],
2456
- [
2457
- 0.0,
2458
- 0.0,
2459
- 0.0,
2460
- 1.0
2461
- ]
2462
- ]
2463
- },
2464
- {
2465
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_82",
2466
- "rotation": 0.06283185307179587,
2467
- "transform_matrix": [
2468
- [
2469
- -0.3411760628223419,
2470
- 0.3660532832145691,
2471
- -0.8657965660095215,
2472
- -3.490137815475464
2473
- ],
2474
- [
2475
- -0.9399994611740112,
2476
- -0.13286031782627106,
2477
- 0.314243882894516,
2478
- 1.2667577266693115
2479
- ],
2480
- [
2481
- 0.0,
2482
- 0.9210607409477234,
2483
- 0.3894186317920685,
2484
- 1.5697968006134033
2485
- ],
2486
- [
2487
- 0.0,
2488
- 0.0,
2489
- 0.0,
2490
- 1.0
2491
- ]
2492
- ]
2493
- },
2494
- {
2495
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_83",
2496
- "rotation": 0.06283185307179587,
2497
- "transform_matrix": [
2498
- [
2499
- -0.8961153626441956,
2500
- -0.2825562059879303,
2501
- 0.34225592017173767,
2502
- 1.3796778917312622
2503
- ],
2504
- [
2505
- 0.4438210427761078,
2506
- -0.5705068707466125,
2507
- 0.6910460591316223,
2508
- 2.785696029663086
2509
- ],
2510
- [
2511
- 1.4901160305669237e-08,
2512
- 0.7711575031280518,
2513
- 0.6366443037986755,
2514
- 2.5663955211639404
2515
- ],
2516
- [
2517
- 0.0,
2518
- 0.0,
2519
- 0.0,
2520
- 1.0
2521
- ]
2522
- ]
2523
- },
2524
- {
2525
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_84",
2526
- "rotation": 0.06283185307179587,
2527
- "transform_matrix": [
2528
- [
2529
- 0.9076535701751709,
2530
- -0.41475310921669006,
2531
- 0.06438172608613968,
2532
- 0.25953108072280884
2533
- ],
2534
- [
2535
- 0.4197203814983368,
2536
- 0.8969117999076843,
2537
- -0.1392267495393753,
2538
- -0.5612410306930542
2539
- ],
2540
- [
2541
- -3.725290742551124e-09,
2542
- 0.15339165925979614,
2543
- 0.9881653785705566,
2544
- 3.98342227935791
2545
- ],
2546
- [
2547
- 0.0,
2548
- 0.0,
2549
- 0.0,
2550
- 1.0
2551
- ]
2552
- ]
2553
- },
2554
- {
2555
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_85",
2556
- "rotation": 0.06283185307179587,
2557
- "transform_matrix": [
2558
- [
2559
- -0.857429027557373,
2560
- 0.25322073698043823,
2561
- -0.4479895532131195,
2562
- -1.8059039115905762
2563
- ],
2564
- [
2565
- -0.5146021842956543,
2566
- -0.42191582918167114,
2567
- 0.7464392185211182,
2568
- 3.008992910385132
2569
- ],
2570
- [
2571
- -1.4901161193847656e-08,
2572
- 0.8705551028251648,
2573
- 0.4920707941055298,
2574
- 1.9836010932922363
2575
- ],
2576
- [
2577
- 0.0,
2578
- 0.0,
2579
- 0.0,
2580
- 1.0
2581
- ]
2582
- ]
2583
- },
2584
- {
2585
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_86",
2586
- "rotation": 0.06283185307179587,
2587
- "transform_matrix": [
2588
- [
2589
- 0.5219665765762329,
2590
- 0.3673712909221649,
2591
- -0.7697980403900146,
2592
- -3.1031556129455566
2593
- ],
2594
- [
2595
- -0.8529659509658813,
2596
- 0.22481030225753784,
2597
- -0.47107258439064026,
2598
- -1.8989545106887817
2599
- ],
2600
- [
2601
- -1.4901161193847656e-08,
2602
- 0.902495801448822,
2603
- 0.43069860339164734,
2604
- 1.7362018823623657
2605
- ],
2606
- [
2607
- 0.0,
2608
- 0.0,
2609
- 0.0,
2610
- 1.0
2611
- ]
2612
- ]
2613
- },
2614
- {
2615
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_87",
2616
- "rotation": 0.06283185307179587,
2617
- "transform_matrix": [
2618
- [
2619
- 0.262929230928421,
2620
- -0.6298996806144714,
2621
- 0.7308177351951599,
2622
- 2.9460208415985107
2623
- ],
2624
- [
2625
- 0.9648151397705078,
2626
- 0.17165882885456085,
2627
- -0.19916079938411713,
2628
- -0.802842915058136
2629
- ],
2630
- [
2631
- 0.0,
2632
- 0.7574692964553833,
2633
- 0.6528707146644592,
2634
- 2.6318063735961914
2635
- ],
2636
- [
2637
- 0.0,
2638
- 0.0,
2639
- 0.0,
2640
- 1.0
2641
- ]
2642
- ]
2643
- },
2644
- {
2645
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_88",
2646
- "rotation": 0.06283185307179587,
2647
- "transform_matrix": [
2648
- [
2649
- 0.7190568447113037,
2650
- 0.25370657444000244,
2651
- -0.6469854712486267,
2652
- -2.6080820560455322
2653
- ],
2654
- [
2655
- -0.6949512958526611,
2656
- 0.2625068128108978,
2657
- -0.669427216053009,
2658
- -2.698547601699829
2659
- ],
2660
- [
2661
- 1.4901161193847656e-08,
2662
- 0.9309796094894409,
2663
- 0.36507102847099304,
2664
- 1.4716484546661377
2665
- ],
2666
- [
2667
- 0.0,
2668
- 0.0,
2669
- 0.0,
2670
- 1.0
2671
- ]
2672
- ]
2673
- },
2674
- {
2675
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_89",
2676
- "rotation": 0.06283185307179587,
2677
- "transform_matrix": [
2678
- [
2679
- -0.6872168183326721,
2680
- -0.15070705115795135,
2681
- 0.7106478810310364,
2682
- 2.864713430404663
2683
- ],
2684
- [
2685
- 0.7264524698257446,
2686
- -0.14256736636161804,
2687
- 0.6722658276557922,
2688
- 2.7099905014038086
2689
- ],
2690
- [
2691
- -7.450580596923828e-09,
2692
- 0.9782443046569824,
2693
- 0.20745617151260376,
2694
- 0.8362826108932495
2695
- ],
2696
- [
2697
- 0.0,
2698
- 0.0,
2699
- 0.0,
2700
- 1.0
2701
- ]
2702
- ]
2703
- },
2704
- {
2705
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_90",
2706
- "rotation": 0.06283185307179587,
2707
- "transform_matrix": [
2708
- [
2709
- 0.11009364575147629,
2710
- 0.6933611035346985,
2711
- -0.7121304273605347,
2712
- -2.8706893920898438
2713
- ],
2714
- [
2715
- -0.9939212203025818,
2716
- 0.07680150866508484,
2717
- -0.07888053357601166,
2718
- -0.3179776072502136
2719
- ],
2720
- [
2721
- -3.725290076417309e-09,
2722
- 0.7164856791496277,
2723
- 0.6976016759872437,
2724
- 2.812122106552124
2725
- ],
2726
- [
2727
- 0.0,
2728
- 0.0,
2729
- 0.0,
2730
- 1.0
2731
- ]
2732
- ]
2733
- },
2734
- {
2735
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_91",
2736
- "rotation": 0.06283185307179587,
2737
- "transform_matrix": [
2738
- [
2739
- 0.9678624868392944,
2740
- -0.20755137503147125,
2741
- 0.142002671957016,
2742
- 0.5724310874938965
2743
- ],
2744
- [
2745
- 0.2514802813529968,
2746
- 0.7987949252128601,
2747
- -0.5465201735496521,
2748
- -2.2030932903289795
2749
- ],
2750
- [
2751
- 0.0,
2752
- 0.5646671056747437,
2753
- 0.8253186941146851,
2754
- 3.3269660472869873
2755
- ],
2756
- [
2757
- 0.0,
2758
- 0.0,
2759
- 0.0,
2760
- 1.0
2761
- ]
2762
- ]
2763
- },
2764
- {
2765
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_92",
2766
- "rotation": 0.06283185307179587,
2767
- "transform_matrix": [
2768
- [
2769
- 0.9153974056243896,
2770
- 0.34088584780693054,
2771
- -0.21411310136318207,
2772
- -0.8631175756454468
2773
- ],
2774
- [
2775
- -0.4025513529777527,
2776
- 0.7751706838607788,
2777
- -0.48689088225364685,
2778
- -1.9627200365066528
2779
- ],
2780
- [
2781
- 0.0,
2782
- 0.5318901538848877,
2783
- 0.8468132019042969,
2784
- 3.4136135578155518
2785
- ],
2786
- [
2787
- 0.0,
2788
- 0.0,
2789
- 0.0,
2790
- 1.0
2791
- ]
2792
- ]
2793
- },
2794
- {
2795
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_93",
2796
- "rotation": 0.06283185307179587,
2797
- "transform_matrix": [
2798
- [
2799
- 0.09554896503686905,
2800
- 0.24177570641040802,
2801
- -0.9656162858009338,
2802
- -3.892524003982544
2803
- ],
2804
- [
2805
- -0.9954248070716858,
2806
- 0.023207595571875572,
2807
- -0.09268768876791,
2808
- -0.37363606691360474
2809
- ],
2810
- [
2811
- 0.0,
2812
- 0.9700545072555542,
2813
- 0.2428869754076004,
2814
- 0.9791087508201599
2815
- ],
2816
- [
2817
- 0.0,
2818
- 0.0,
2819
- 0.0,
2820
- 1.0
2821
- ]
2822
- ]
2823
- },
2824
- {
2825
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_94",
2826
- "rotation": 0.06283185307179587,
2827
- "transform_matrix": [
2828
- [
2829
- -0.5899582505226135,
2830
- 0.11707798391580582,
2831
- -0.7989004850387573,
2832
- -3.220470905303955
2833
- ],
2834
- [
2835
- -0.8074337244033813,
2836
- -0.08554401248693466,
2837
- 0.5837233662605286,
2838
- 2.3530640602111816
2839
- ],
2840
- [
2841
- 7.450580596923828e-09,
2842
- 0.989431619644165,
2843
- 0.14500010013580322,
2844
- 0.5845140814781189
2845
- ],
2846
- [
2847
- 0.0,
2848
- 0.0,
2849
- 0.0,
2850
- 1.0
2851
- ]
2852
- ]
2853
- },
2854
- {
2855
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_95",
2856
- "rotation": 0.06283185307179587,
2857
- "transform_matrix": [
2858
- [
2859
- -0.3251526653766632,
2860
- 0.47552454471588135,
2861
- -0.8174057006835938,
2862
- -3.2950680255889893
2863
- ],
2864
- [
2865
- -0.9456614851951599,
2866
- -0.1635025441646576,
2867
- 0.28105366230010986,
2868
- 1.1329636573791504
2869
- ],
2870
- [
2871
- 1.4901160305669237e-08,
2872
- 0.864374577999115,
2873
- 0.5028484463691711,
2874
- 2.0270471572875977
2875
- ],
2876
- [
2877
- 0.0,
2878
- 0.0,
2879
- 0.0,
2880
- 1.0
2881
- ]
2882
- ]
2883
- },
2884
- {
2885
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_96",
2886
- "rotation": 0.06283185307179587,
2887
- "transform_matrix": [
2888
- [
2889
- -0.007356112357228994,
2890
- -0.3722950220108032,
2891
- 0.9280852675437927,
2892
- 3.7412314414978027
2893
- ],
2894
- [
2895
- 0.9999728798866272,
2896
- -0.0027387181762605906,
2897
- 0.006827284581959248,
2898
- 0.027521664276719093
2899
- ],
2900
- [
2901
- 0.0,
2902
- 0.9281103610992432,
2903
- 0.37230512499809265,
2904
- 1.500809907913208
2905
- ],
2906
- [
2907
- 0.0,
2908
- 0.0,
2909
- 0.0,
2910
- 1.0
2911
- ]
2912
- ]
2913
- },
2914
- {
2915
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_97",
2916
- "rotation": 0.06283185307179587,
2917
- "transform_matrix": [
2918
- [
2919
- 0.17390967905521393,
2920
- -0.9478758573532104,
2921
- 0.26699569821357727,
2922
- 1.0762940645217896
2923
- ],
2924
- [
2925
- 0.9847615361213684,
2926
- 0.16739563643932343,
2927
- -0.047151658684015274,
2928
- -0.19007441401481628
2929
- ],
2930
- [
2931
- 3.725290076417309e-09,
2932
- 0.27112722396850586,
2933
- 0.9625434875488281,
2934
- 3.8801369667053223
2935
- ],
2936
- [
2937
- 0.0,
2938
- 0.0,
2939
- 0.0,
2940
- 1.0
2941
- ]
2942
- ]
2943
- },
2944
- {
2945
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_98",
2946
- "rotation": 0.06283185307179587,
2947
- "transform_matrix": [
2948
- [
2949
- 0.884382963180542,
2950
- -0.4409871995449066,
2951
- 0.15296123921871185,
2952
- 0.6166064739227295
2953
- ],
2954
- [
2955
- 0.46676215529441833,
2956
- 0.8355467319488525,
2957
- -0.28981852531433105,
2958
- -1.1682958602905273
2959
- ],
2960
- [
2961
- 0.0,
2962
- 0.3277069926261902,
2963
- 0.9447793960571289,
2964
- 3.8085274696350098
2965
- ],
2966
- [
2967
- 0.0,
2968
- 0.0,
2969
- 0.0,
2970
- 1.0
2971
- ]
2972
- ]
2973
- },
2974
- {
2975
- "file_path": "/var/home/mikolaj.zielinski/Git/gnerf_nerfstudio/data/nerf_synthetic/pirate_flag/train/r_99",
2976
- "rotation": 0.06283185307179587,
2977
- "transform_matrix": [
2978
- [
2979
- -0.31852027773857117,
2980
- 0.9175867438316345,
2981
- -0.2378644347190857,
2982
- -0.9588622450828552
2983
- ],
2984
- [
2985
- -0.9479159712791443,
2986
- -0.3083290159702301,
2987
- 0.07992759346961975,
2988
- 0.32219845056533813
2989
- ],
2990
- [
2991
- -7.450580152834618e-09,
2992
- 0.25093400478363037,
2993
- 0.968004047870636,
2994
- 3.9021494388580322
2995
- ],
2996
- [
2997
- 0.0,
2998
- 0.0,
2999
- 0.0,
3000
- 1.0
3001
- ]
3002
- ]
3003
- }
3004
- ]
3005
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/rug_cup/.DS_Store ADDED
Binary file (6.15 kB). View file
 
data/rug_cup/sparse_pc.ply ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ab1e5a8e023275569fe2b6ea48d0196c93eaa515372b5c0cf091a517ed8bcc0
3
+ size 2323645
data/rug_cup/test/r_0.png ADDED

Git LFS Details

  • SHA256: a728b689bdc17629873b4f978ec72cd2c9c1b0c24e50b9c138b25908f5755392
  • Pointer size: 131 Bytes
  • Size of remote file: 250 kB
data/rug_cup/test/r_0_depth_0001.png ADDED

Git LFS Details

  • SHA256: 1e33c1d9c686183199b462d53dca0be3b27def69e4ac31389980b2d375b6b9db
  • Pointer size: 130 Bytes
  • Size of remote file: 22.4 kB
data/rug_cup/test/r_0_normal_0001.png ADDED

Git LFS Details

  • SHA256: ba7e3ba171105ec7b0bbc1f20fb4deaf2eae96ffa3aa27b33dfd72af74d6869c
  • Pointer size: 131 Bytes
  • Size of remote file: 253 kB
data/rug_cup/test/r_1.png ADDED

Git LFS Details

  • SHA256: 6db10d96f3c43a4f24e266a0b98422687eedf448a4dd0517d401a05a25d72705
  • Pointer size: 131 Bytes
  • Size of remote file: 253 kB
data/rug_cup/test/r_10.png ADDED

Git LFS Details

  • SHA256: eb9e1df52c4907a74002f77049204dde14320a88333f333fd08cfa39ddf7e27a
  • Pointer size: 131 Bytes
  • Size of remote file: 253 kB
data/rug_cup/test/r_100.png ADDED

Git LFS Details

  • SHA256: f463491ec2bb833be5d9aaab8d5718b5260bdbc61bbfaa802711c9003d1b9b75
  • Pointer size: 130 Bytes
  • Size of remote file: 90 kB
data/rug_cup/test/r_100_depth_0001.png ADDED

Git LFS Details

  • SHA256: 3676965fdd34ed5a63f3d8ad93ecae9bc882ca257dcc88208bff8a554023d7d8
  • Pointer size: 130 Bytes
  • Size of remote file: 17.9 kB
data/rug_cup/test/r_100_normal_0001.png ADDED

Git LFS Details

  • SHA256: e490c7e859aeeb1b380160ec108dd7137ffa6507ddeda72337ab807cbcc3059b
  • Pointer size: 130 Bytes
  • Size of remote file: 85.4 kB
data/rug_cup/test/r_101.png ADDED

Git LFS Details

  • SHA256: d291622fe275dc37d6141dfe2a7b26455d835d1776a3f9b15ae732da1955746c
  • Pointer size: 130 Bytes
  • Size of remote file: 90.6 kB
data/rug_cup/test/r_101_depth_0001.png ADDED

Git LFS Details

  • SHA256: f81b83184d56ed258da920c45fbc644f5f18a799a348f9dbba8f8ba3cf056854
  • Pointer size: 130 Bytes
  • Size of remote file: 17.7 kB
data/rug_cup/test/r_101_normal_0001.png ADDED

Git LFS Details

  • SHA256: 7d096ba1fade70ac20674b93f5ad99d9f4f78ce1d3630ef0bee3bcbfef428da0
  • Pointer size: 130 Bytes
  • Size of remote file: 83.4 kB
data/rug_cup/test/r_102.png ADDED

Git LFS Details

  • SHA256: 2856793bb50e6fbfc498f57f5caa73a202693be1a7efb2a6721f62f4da4d7f38
  • Pointer size: 130 Bytes
  • Size of remote file: 90.8 kB
data/rug_cup/test/r_102_depth_0001.png ADDED

Git LFS Details

  • SHA256: 4ef176fcd4d76a2c41f420d6d286c5b240e282c7c0c43c12dd3940ab3a2fbe2d
  • Pointer size: 130 Bytes
  • Size of remote file: 18.6 kB
data/rug_cup/test/r_102_normal_0001.png ADDED

Git LFS Details

  • SHA256: dc488e508a1aacb7bfd4fa197e6540d4cbb852e09c609598223e8f2eedf6499b
  • Pointer size: 130 Bytes
  • Size of remote file: 83.7 kB
data/rug_cup/test/r_103.png ADDED

Git LFS Details

  • SHA256: 5ce73e066048aadfcf8cf57972b6667f78d142a155e7734589b1420e83513b12
  • Pointer size: 130 Bytes
  • Size of remote file: 90.8 kB
data/rug_cup/test/r_103_depth_0001.png ADDED

Git LFS Details

  • SHA256: 5b349c334fa0fc57e7fece44118df8e44025501b281b8ea55a8ea21627058190
  • Pointer size: 130 Bytes
  • Size of remote file: 18.6 kB
data/rug_cup/test/r_103_normal_0001.png ADDED

Git LFS Details

  • SHA256: 2aea43c272e79e15fb4e5adbb0524b7b748053dcc3b9d1bf62e4696f0013fdae
  • Pointer size: 130 Bytes
  • Size of remote file: 82.7 kB
data/rug_cup/test/r_104.png ADDED

Git LFS Details

  • SHA256: 6630bd9536ed0ac59ad96457c4f603328e27c5ac5da787042632d1c986eb0018
  • Pointer size: 130 Bytes
  • Size of remote file: 89.8 kB
data/rug_cup/test/r_104_depth_0001.png ADDED

Git LFS Details

  • SHA256: 9d37b318331ac10e6f5e50a667e4ae02e49b07789d3954def475bec039319e11
  • Pointer size: 130 Bytes
  • Size of remote file: 18.6 kB
data/rug_cup/test/r_104_normal_0001.png ADDED

Git LFS Details

  • SHA256: 31d258d9c9d116d8ff51f0237cc294f8c962c9fd5821af968e793076005d5360
  • Pointer size: 130 Bytes
  • Size of remote file: 81.7 kB
data/rug_cup/test/r_105.png ADDED

Git LFS Details

  • SHA256: c7e6897f067ce84fcda06dcae5bdc335048d5bf96306bf7d4c1fa16a8fe141da
  • Pointer size: 130 Bytes
  • Size of remote file: 89.4 kB