scematica-nn 1.12.0

Pure-Rust Double/Dueling Deep Q* reinforcement-learning agent — no external ML framework dependency.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod action;
pub mod agent;
pub mod network;
pub mod replay;
pub mod state;
pub mod tournament;

pub use action::{TradeAction, ACTION_DIM};
pub use agent::{AgentStats, DQNAgent, TradeDecisionExplanation};
pub use replay::Transition;
pub use state::{TradeState, STATE_DIM};
pub use tournament::AgentTournament;