Save plot in both PDF and PNG formats.
(output_dir: Path, filename_base: str)
| 1022 | regularization: float = 0.01, |
| 1023 | output_dir: Path | None = None, |
| 1024 | games: list[str] | None = None, |
| 1025 | ): |
| 1026 | self.log_dir = log_dir |
| 1027 | self.max_rounds = max_rounds |
| 1028 | self.all_games_normalization_scheme = all_games_normalization_scheme |
| 1029 | self.score_type = score_type |
| 1030 | self.regularization = regularization |
| 1031 | self.output_dir = output_dir |
| 1032 | self.games = games |