This package is a set of RL agents that are specifically built to solve classic RL problems. Current problems include:
- CartPole
- MountainCar
To use the agent packages in your python virtual environment, simply activate your virtual environment install it using pip:
pip install .
or pipenv:
pipenv install .
After installation, RL agents can be imported and experimented on:
import gym
from CartPole.agents import QLearningAgent
env = gym.make("CartPole-v0")
agent = QLearningAgent(env)
For more examples of how to train and test the agent, see the Simulation
folder