Implementation of Reinforcement Learning Algorithms. Python, OpenAI Gym, Tensorflow. Exercises and Solutions to accompany Sutton's Book and David Silver's course.
Hi author, your code is just wonderful and it help me a lot on building deep reinforcement learning system for my project. But I found a mistake in the following code. When you print out steps,
Hi author, your code is just wonderful and it help me a lot on building deep reinforcement learning system for my project. But I found a mistake in the following code. When you print out steps,
_stats.episode_rewards[iepisode - 1] why the index is _iepisode - 1, but i_episode begins with 0. I think the index should be _iepisode
If you have time to check it, I will be appreciated!