Module ai.rl

Module containing implementations of reinforcement learning (rl) algorithms.

Expand source code
"""Module containing implementations of reinforcement learning (rl) algorithms."""

from . import alpha_zero, utils, dqn, a3c


__all__ = ["alpha_zero", "utils", "dqn", "a3c"]

Sub-modules

ai.rl.a3c

Asynchronous Advantage Actor Critic (A3C).

ai.rl.alpha_zero

Implementation of the AlphaZero algorithm, based on Monte Carlo Tree Search for zero sum games …

ai.rl.dqn

DQN-based algorithms.

ai.rl.utils

Agent utility methods.