Skip to content

Commit

Permalink
Enable coarse-to-fine training
Browse files Browse the repository at this point in the history
Following this thread: nerfstudio-project#2984
  • Loading branch information
ichsan2895 authored Mar 12, 2024
1 parent ba68eef commit ef7ebb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nerfstudio/models/splatfacto.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ class SplatfactoModelConfig(ModelConfig):
"""period of steps where refinement is turned off"""
refine_every: int = 100
"""period of steps where gaussians are culled and densified"""
resolution_schedule: int = 250
resolution_schedule: int = 3000
"""training starts at 1/d resolution, every n steps this is doubled"""
background_color: Literal["random", "black", "white"] = "random"
"""Whether to randomize the background color."""
num_downscales: int = 0
num_downscales: int = 2
"""at the beginning, resolution is 1/2^d, where d is this number"""
cull_alpha_thresh: float = 0.1
"""threshold of opacity for culling gaussians. One can set it to a lower value (e.g. 0.005) for higher quality."""
Expand Down

0 comments on commit ef7ebb7

Please sign in to comment.