INNER CODE UNIT · Python

__init__

jayin92/Skyfall-GS · arguments/__init__.py:132

    def __init__(self, parser: ArgumentParser):
        self.convert_SHs_python: bool = False
        self.compute_cov3D_python: bool = False
        self.debug: bool = False
        
        super().__init__(parser, "Pipeline Parameters")


class OptimizationParams(ParamGroup):
    """Parameters for optimization and training."""
    
    # Constants
    DEFAULT_ITERATIONS = 30_000
    DEFAULT_DENSIFY_UNTIL = 20_000
    
    def __init__(self, parser: ArgumentParser):
        # Basic training parameters
        self.iterations: int = self.DEFAULT_ITERATIONS

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…