Trait lfa::projectors::Projector[][src]

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

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

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