CacheAwareTransform

Trait CacheAwareTransform 

Source
pub trait CacheAwareTransform {
    // Required method
    fn transform_cached(
        &self,
        features: &Array2<f64>,
        config: &CacheConfig,
    ) -> Result<Array2<f64>, SklearsError>;
}
Expand description

Cache-aware feature transformation strategy

Required Methods§

Source

fn transform_cached( &self, features: &Array2<f64>, config: &CacheConfig, ) -> Result<Array2<f64>, SklearsError>

Transform features with cache optimization

Implementors§