Learn2Splat / optgs /evaluation /evaluation_cfg.py
SteEsp's picture
Add Docker-based Learn2Splat demo (viser GUI)
78d2329 verified
raw
history blame contribute delete
358 Bytes
from dataclasses import dataclass
from pathlib import Path
@dataclass
class MethodCfg:
name: str
key: str
path: Path
@dataclass
class SceneCfg:
scene: str
target_index: int
@dataclass
class EvaluationCfg:
methods: list[MethodCfg]
side_by_side_path: Path | None
animate_side_by_side: bool
highlighted: list[SceneCfg]