less than 1 minute read

This month I was studying reinforcement learning and his implementation in Python. I was using Open AI Gym (a framework for setting the environement where the algorithm will work), Keras (a framework for implementing different kinds of neural network models), Keras-RL (a framework for implement different kinds of reinforcement learning models based on neural network models from Keras) and I was trying to resolve the Cartpole-v0 environment that is on Open AI Gym docs.

I implemented a notebook where I define an example of the process of implementing a reinforcement learning algorithm and training it. I adapt Open AI Gym to Google Colaboratory for rendering the enviroment into Jupyter notebooks.