lfa 0.15.0

Native rust implementations of linear function approximators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// TODO: ANOVA kernel

pub trait Kernel<I> {
    fn kernel(&self, x: I, y: I) -> f64;
}

mod stationary;
pub use self::stationary::*;

mod rational_quadratic;
pub use self::rational_quadratic::*;