octopus 0.1.0

A fast, flexible framework for multi-armed bandit strategies in Rust.
Documentation
1
2
3
4
5
6
7
//! Bandit algorithm implementations.
//!
//! This module contains concrete implementations of bandit policies, such as Epsilon-Greedy.
//! All algorithms implement the BanditPolicy trait and are generic over action, reward, and context types.

pub mod epsilon_greedy;
pub mod thompson_sampling;