relearn 0.3.1

A Reinforcement Learning library
Documentation
1
2
3
4
5
6
7
8
//! Multi-armed bandit agents.
//!
//! These agents do not model any relationship between states.
mod thompson_sampling;
mod ucb;

pub use thompson_sampling::{BetaThompsonSamplingAgent, BetaThompsonSamplingAgentConfig};
pub use ucb::{UCB1Agent, UCB1AgentConfig};