INNER CODE UNIT · Python

ModelParams

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

class ModelParams(ParamGroup):
    """Parameters for model loading and configuration."""
    
    def __init__(self, parser: ArgumentParser, sentinel: bool = False):
        # Appearance modeling
        self.sh_degree: int = 3
        self.appearance_enabled: bool = False
        self.appearance_n_fourier_freqs: int = 4
        self.appearance_embedding_dim: int = 32
        
        # Paths (underscore prefix indicates shorthand option available)
        self._source_path: str = ""
        self._model_path: str = ""
        self._images: str = "images"
        
        # Resolution and rendering
        self._resolution: int = -1
        self._white_background: bool = False

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…