gym-gidwumpus

This is an environment for the wumpus world that you can reference as an openai gym environment.


Keywords
openai, ai, reinforcement, learning, wimpus, env, environment, machine
License
MIT
Install
pip install gym-gidwumpus==1.6

Documentation

The entire environment can be imported as a module into your python scripts and used as an environment to run with open AI gym's testing framework.

To install the gidwumpus environment, go to gym-gidwumpus root folder and run the command: pip install -e

This will install the gym environment. We can now use the gym environment with the following code: """" import gym import gym_gidwumpus

env = gym.make('gidwumpus-v0') """"