smelt-memory 0.1.0

Contextual memory system for Smelt semantic version control
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Utility calculation algorithms for episode ranking
//!
//! Ported from MemRL with adaptations for Smelt's needs.

mod bellman;
mod decay;
mod ranker;
mod wilson;

pub use bellman::{bellman_propagate, temporal_credit_assignment, PropagationResult};
pub use decay::{apply_decay, DecayParams};
pub use ranker::UtilityRanker;
pub use wilson::wilson_score;