Skip to content

Commit

Permalink
Fix BaselineVsSelf
Browse files Browse the repository at this point in the history
  • Loading branch information
masus04 committed Aug 18, 2018
1 parent 68ee0a2 commit 0ad4317
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Othello/experiments/trainBaselinePlayerVsSelf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def run(self, lr, 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 + " milestones" if MILESTONES else ""),
"Train %s vs Best version of self\nGames: %s Evaluations: %s Replacement ratio: %s\nTime: %s"
% (self.player1, episode*games_per_evaluation, self.evaluations, self.replacements[0]/self.replacements[1], config.time_diff(start_time)))
"Train %s vs Best version of self\nGames: %s Evaluations: %s\nTime: %s"
% (self.player1, episode*games_per_evaluation, self.evaluations, config.time_diff(start_time)))

# If x/5th of training is completed, save milestone
if MILESTONES and (self.games / episode * games_per_evaluation) % 5 == 0:
Expand Down

0 comments on commit 0ad4317

Please sign in to comment.