kengz/SLM-Lab

View on GitHub
slm_lab/agent/algorithm/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# The algorithm module
# Contains implementations of reinforcement learning algorithms.
# Uses the nets module to build neural networks as the relevant function approximators
from .actor_critic import *
from .dqn import *
from .ppo import *
from .random import *
from .reinforce import *
from .sac import *
from .sarsa import *
from .sil import *