/gym_env_tutorial

Primary LanguageJupyter Notebook

Prerequisites

You need to install OpenAI gym and stable-baselines. Because stable-baselines only supports tensorflow versions 1.8 to 1.15, we must install python 3.7.

conda create -n deeprl python=3.7
conda activate deeprl
pip install gym stable-baselines tensorflow==1.15
conda install jupyter

Example

Open the tutorial.ipynb notebook.

References

  1. Custom Cartpole
  2. OpenAI gym Cartpole
  3. Stable-baselines
  4. Policy Networks