We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In agents/Base_Agent.py
def print_rolling_result(self): """Prints out the latest episode results""" text = """"\r Episode {0}, Score: {3: .2f}, Max score seen: {4: .2f}, Rolling score: {1: .2f}, Max rolling score seen: {2: .2f}""" sys.stdout.write(text.format(len(self.game_full_episode_scores), self.rolling_results[-1], self.max_rolling_score_seen, self.game_full_episode_scores[-1], self.max_episode_score_seen)) sys.stdout.flush()
the order of parameters seems to be wrong
By the way, what is the meaning of 'rolling_results'?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In agents/Base_Agent.py
the order of parameters seems to be wrong
By the way, what is the meaning of 'rolling_results'?
The text was updated successfully, but these errors were encountered: