GYM in Reinforcement Learning

What is gym . How to Make enviroment using gym

A gym environment will basically be a class with 4 functions. The first function is the initialization function of the class, which will take no additional parameters and initialize a class. It also sets the initial state of our RL problem.

ref:https://medium.com/@apoddar573/making-your-own-custom-environment-in-gym-c3b65ff8cdaa#:~:text=A%20gym%20environment%20will%20basically,state%20of%20our%20RL%20problem.

1 Like