Skip to main content

Yet another zoo of (Deep) Reinforcment Learning methods in Python using PyTorch

Project description

ai-traineree

DocStatus Build Status codecov

The intention is to have a zoo of Deep Reinforcment Learning methods and showcasing their application on some environments.

Read more in the doc: ReadTheDocs AI-Traineree.

Why another?

The main reason is the implemention philosophy. We strongly believe that agents should be emerged in the environment and not the other way round. Majority of the popular implementations pass environment instance to the agent as if the agent was the focus point. This might ease implementation of some algorithms but it isn't representative of the world; agents want to control the environment but that doesn't mean they can/should.

That, and using PyTorch instead of Tensorflow or JAX.

Quick start

To get started with training your RL agent you need three things: an agent, an environment and a runner. Let's say you want to train a DQN agent on OpenAI CartPole-v1:

from ai_traineree.agents.dqn import DQNAgent
from ai_traineree.env_runner import EnvRunner
from ai_traineree.tasks import GymTask

task = GymTask('CartPole-v1)
agent = DQNAgent(task.state_size, task.action_size)
env_runner = EnvRunner(task, agent)

scores = env_runner.run()

or execute one of provided examples

>  python -m examples.cart_dqn

That's it.

Installation

There isn't currently any installation mechanism. Git clone is expected if you want to play yourself. Coming updates include pip package and installation instructions.

As usual with Python, the expectation is to have own virtual environment and then pip install requirements. For example,

> python -m venv .venv
> git clone git@github.com:laszukdawid/ai-traineree.git
> source .venv/bin/activate
> python setup.py install

Current state

Playing gym

One way to improve learning speed is to simply show them how to play or, more researchy/creepy, provide a proper seed. This isn't a general rule, since some algorithms train better without any human interaction, but since you're on GitHub... that's unlikely your case. Currently there's a script interact.py which uses OpenAI Gym's play API to record moves and AI Traineree to store them in a buffer. Such buffers can be loaded by agents on initiation.

This is just a beginning and there will be more work on these interactions.

Requirement: Install pygame.

Agents

Short Progress Link Full name Doc
DQN Implemented DeepMind, Nature Deep Q-learning Network Doc
DDPG Implemented arXiv Deep Deterministic Policy Gradient Doc
D4PG Implemented arXiv Distributed Distributional Deterministic Policy Gradients Doc
TD3 Implemented arXiv Twine Delayed Deep Deterministic policy gradient Doc
PPO Implemented arXiv Proximal Policy Optimization Doc
SAC Implemented arXiv Soft Actor Critic Doc
TRPO arXiv Trust Region Policy Optimization
RAINBOW Implemented arXiv DQN with a few improvements Doc

Multi agents

We provide both Multi Agents agents entities and means to execute them against supported (below) environements. However, that doesn't mean one can be used without the other.

Short Progress Link Full name Doc
IQL Implemented Independent Q-Learners Doc
MADDPG Implemented arXiv Multi agent DDPG Doc

Loggers

Supports using Tensorboard (via PyTorch's SummaryWriter) and Neptune to display metrics. Wrappers are provided as TensorboardLogger and NeptuneLogger.

Note: In order to use Neptune one needs to install neptune-client (pip install neptune-client).

Environments

Name Progress Link
OpenAI Gym - Classic Done
OpenAI Gym - Atari Done
OpenAI Gym - MuJoCo Not interested.
PettingZoo Initial support Page / GitHub
Unity ML Somehow supported. Page
MAME Linux emulator Interested. Official page

Development

Name Progress
Pip package Not started
CD Not started
More multi agent methods Research
Test coverage > 80% Tested ~40%, Covered 85%

There are other potential things on the roadmap but haven't dedicated to them yet.

Should I focus on something specificallly? Let me know by leaving opening a feature request issue or contacting through ai-traineree@dawid.lasz.uk.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ai-traineree-0.0.6.tar.gz (63.1 kB view details)

Uploaded Source

Built Distribution

ai_traineree-0.0.6-py3-none-any.whl (89.2 kB view details)

Uploaded Python 3

File details

Details for the file ai-traineree-0.0.6.tar.gz.

File metadata

  • Download URL: ai-traineree-0.0.6.tar.gz
  • Upload date:
  • Size: 63.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.5

File hashes

Hashes for ai-traineree-0.0.6.tar.gz
Algorithm Hash digest
SHA256 a74c1e8535b3e190a80d6568d1318030f072d7153bdfc6e358e14afa3307222a
MD5 aaf647943cae986a254a1a1af80eca8c
BLAKE2b-256 bd5156f6edba41f3f0be71f2271ec89722bc1d4adb2c9be04b97a4afcf915029

See more details on using hashes here.

File details

Details for the file ai_traineree-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: ai_traineree-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 89.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.5

File hashes

Hashes for ai_traineree-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 8468e8960059e6ea4e930399af92f02120c6756fc0930116a833813cf031314a
MD5 7782d8dfd3a47bbf784a9b0c86376ea2
BLAKE2b-256 60953782b9efb230b26f172e2bcc921dfa0b59e3f906ea16fb96e8aebb299b70

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page