File size: 388 Bytes
2568013 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
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
output_metrics_path: Path
animate_side_by_side: bool
highlighted: list[SceneCfg]
|