r2l-core 0.0.3

A rust reinforcement learning library
Documentation
1
2
3
4
5
6
7
8
//! Shared contracts for on-policy algorithms.

/// Agent, sampler, adapter, and training-loop interfaces.
pub mod algorithm;
/// Learning-module interface used by on-policy agents.
pub mod learning_module;
/// Policy/value loss containers.
pub mod losses;