pub struct OutOfCoreKernelPipeline { /* private fields */ }Expand description
Out-of-core kernel approximation pipeline
Implementations§
Source§impl OutOfCoreKernelPipeline
impl OutOfCoreKernelPipeline
Sourcepub fn with_config(self, config: OutOfCoreConfig) -> Self
pub fn with_config(self, config: OutOfCoreConfig) -> Self
Set configuration
Sourcepub fn add_rbf_sampler(self, n_components: usize, gamma: f64) -> Self
pub fn add_rbf_sampler(self, n_components: usize, gamma: f64) -> Self
Add RBF sampler to pipeline
Sourcepub fn add_nystroem(self, n_components: usize, gamma: f64) -> Self
pub fn add_nystroem(self, n_components: usize, gamma: f64) -> Self
Add Nyström method to pipeline
Sourcepub fn process(&mut self, loader: &mut OutOfCoreLoader) -> Result<()>
pub fn process(&mut self, loader: &mut OutOfCoreLoader) -> Result<()>
Process data through pipeline
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OutOfCoreKernelPipeline
impl RefUnwindSafe for OutOfCoreKernelPipeline
impl Send for OutOfCoreKernelPipeline
impl Sync for OutOfCoreKernelPipeline
impl Unpin for OutOfCoreKernelPipeline
impl UnwindSafe for OutOfCoreKernelPipeline
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more