k-Armed Bandit 1.0.0
A collection of k-armed bandits and assoicated agents for reinforcement learning
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1"""
2The bandit module implements several k-armed bandit type problems.
3"""
4from .base_bandit import BaseBandit
5from .normal import Normal
6from .random_walk import RandomWalk
7from .static import Static