Skip to content

Commit

Permalink
fixing a mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
azhow committed May 13, 2018
1 parent a41901f commit 8db8e07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/experiment/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -684,11 +684,11 @@ def run_ql(self, num_episodes, alpha, decay):
self.outputFile = open(filename, 'w')
self.outputFile.write(headerstr + '\n')

''' To print progress bar, uncomment this line.
for episode in range(num_episodes):
print_progress(episode+1, num_episodes)
(instance, value) = self.ql.runEpisode()
self.__print_step(episode, instance, qlTT=value)
''' To print progress bar, uncomment this line.
print_progress(episode+1, num_episodes)
'''

print("Output file location: %s" % filename)
Expand Down

0 comments on commit 8db8e07

Please sign in to comment.