learnwell 0.2.1

Framework for reinforcement learning
Documentation
1
2
3
4
5
pub trait NNBackend {
    fn update_from(&mut self, other: &Self);
    fn forward(&mut self, input: &[f32]) -> Vec<f32>;
    fn fit(&mut self, inputs: &[Vec<f32>], outputs: &[Vec<f32>], batch_size: usize);
}