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 agent module provides some sample agents that can learn from a bandit.
3"""
4from .base_agent import BaseAgent
5from .epsilon_greedy import EpsilonGreedy
6from .greedy import Greedy