Trait lfa::Projector

source ·
pub trait Projector<I: ?Sized>: Space<Value = Projection> {
    fn project(&self, input: &I) -> Projection;

    fn project_expanded(&self, input: &I) -> DenseT { ... }
}
Expand description

Trait for basis projectors.

Required Methods§

Project data from an input space onto the basis.

Provided Methods§

Project data from an input space onto the basis and convert into a raw, dense vector.

Implementors§