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§
Sourcefn transform_cached(
&self,
features: &Array2<f64>,
config: &CacheConfig,
) -> Result<Array2<f64>, SklearsError>
fn transform_cached( &self, features: &Array2<f64>, config: &CacheConfig, ) -> Result<Array2<f64>, SklearsError>
Transform features with cache optimization