Save plot in both PDF and PNG formats.
(output_dir: Path, filename_base: str)
| 1138 | regularization: float = 0.01, |
| 1139 | output_dir: Path | None = None, |
| 1140 | games: list[str] | None = None, |
| 1141 | ): |
| 1142 | self.log_dir = log_dir |
| 1143 | self.max_rounds = max_rounds |
| 1144 | self.all_games_normalization_scheme = all_games_normalization_scheme |
| 1145 | self.score_type = score_type |
| 1146 | self.regularization = regularization |
| 1147 | self.output_dir = output_dir |
| 1148 | self.games = games |