Skip to content

Commit ef7ebb7

Browse files
authored
Enable coarse-to-fine training
Following this thread: nerfstudio-project#2984
1 parent ba68eef commit ef7ebb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nerfstudio/models/splatfacto.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@ class SplatfactoModelConfig(ModelConfig):
109109
"""period of steps where refinement is turned off"""
110110
refine_every: int = 100
111111
"""period of steps where gaussians are culled and densified"""
112-
resolution_schedule: int = 250
112+
resolution_schedule: int = 3000
113113
"""training starts at 1/d resolution, every n steps this is doubled"""
114114
background_color: Literal["random", "black", "white"] = "random"
115115
"""Whether to randomize the background color."""
116-
num_downscales: int = 0
116+
num_downscales: int = 2
117117
"""at the beginning, resolution is 1/2^d, where d is this number"""
118118
cull_alpha_thresh: float = 0.1
119119
"""threshold of opacity for culling gaussians. One can set it to a lower value (e.g. 0.005) for higher quality."""

0 commit comments

Comments
 (0)