rl 0.4.0

A reinforcement learning library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Exploration policy result
pub enum Choice {
    Explore,
    Exploit,
}

mod epsilon_greedy;
mod softmax;
mod thompson;
mod ucb;

pub use epsilon_greedy::EpsilonGreedy;
pub use softmax::Softmax;
// pub use thompson::Thompson;
pub use ucb::UCB;