Setting up OpenAI Gym Environments for Reinforcement Learning
We provide Atari environments for experimenting with reinforcement learning that can be selected via the Environment component which uses OpenAI Gym as its foundation. However, dependencies must be installed prior to running PerceptiLabs. If these dependencies haven't been installed you will see the following messages in the console when running PerceptiLabs:
Note
Gym environments must be installed on Windows. On Linux and Mac OS they are included in the installation package.
Follow the steps below to install the necessary dependencies within your Python environment:
Run
pip install -f https://github.com/Kojoley/atari-py/releases atari_py
Run
pip install gym[atari]
When you run PerceptiLabs, the above message should no longer appear in the console, and Atari environments can now be selected when using the Environment component in your model.
Last updated