-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
I cannot get FrozenLake-v0 OpenAMI Gym to Perform consistently more than 78% #43
Comments
|
But it only performed at less than 75%Not any better than my algorithms.
|
Original Sample Size=100There is a clearly a difference between the first and second computation of the scores due to stochasticity:
Increase sample size to 1000
|
Sample Size 10kdef evaluate_policy(env, policy, n_episodes=10000):
total_rewards = 0.0
for _ in range(n_episodes):
total_rewards += run_episode(env, policy)
return total_rewards / n_episodes results:
|
Conclusion: expectation of best results 74-75% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
But my results are around 70-75%: https://github.com/jinzishuai/learn2deeplearn/blob/master/learnRL/OpenAIGym/FrozenLake/results.md
we should test this which claims to be 0.79 ± 0.05: https://gym.openai.com/evaluations/eval_4VyQBhXMRLmG9y9MQA5ePA/
The text was updated successfully, but these errors were encountered: