Skip to content

Commit

Permalink
Minor plottig fix
Browse files Browse the repository at this point in the history
  • Loading branch information
masus04 committed Sep 14, 2018
1 parent d79d93a commit 12d5ef9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TicTacToe/experiments/reinforced/trainBaselinePlayerVsSelf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def run(self, lr, weight_decay, silent=False):

if not silent and Printer.print_episode(episode*games_per_evaluation, self.games, datetime.now() - start_time):
self.plot_and_save(
"%s vs BEST" % (self.player1),
"Train %s vs Best version of self\nGames: %s Evaluations: %s\nTime: %s"
"%s vs SELF" % (self.player1),
"Train %s vs Self version of self\nGames: %s Evaluations: %s\nTime: %s"
% (self.player1, episode*games_per_evaluation, self.evaluations, config.time_diff(start_time)))

self.final_score, self.final_results, self.results_overview = evaluate_against_base_players(self.player1, silent=False)
Expand Down

0 comments on commit 12d5ef9

Please sign in to comment.