(self, experiment_dir: Path)
| 21 | """Generates HTML dashboard for experiment results.""" |
| 22 | |
| 23 | def __init__(self, experiment_dir: Path): |
| 24 | self.experiment_dir = Path(experiment_dir) |
| 25 | self.templates_dir = Path(__file__).parent.parent / "templates" |
| 26 | self.html_dir = self.experiment_dir / "html" |
| 27 | |
| 28 | def generate_all(self): |
| 29 | """Generate all HTML pages for the experiment.""" |
nothing calls this directly
no outgoing calls
no test coverage detected