pub struct OutOfCoreNystroem { /* private fields */ }Expand description
Out-of-core Nyström method
Implementations§
Source§impl OutOfCoreNystroem
impl OutOfCoreNystroem
Sourcepub fn with_config(self, config: OutOfCoreConfig) -> Self
pub fn with_config(self, config: OutOfCoreConfig) -> Self
Set out-of-core configuration
Sourcepub fn with_strategy(self, strategy: OutOfCoreStrategy) -> Self
pub fn with_strategy(self, strategy: OutOfCoreStrategy) -> Self
Set processing strategy
Sourcepub fn fit_out_of_core(&mut self, loader: &mut OutOfCoreLoader) -> Result<()>
pub fn fit_out_of_core(&mut self, loader: &mut OutOfCoreLoader) -> Result<()>
Fit the Nyström method out-of-core
Sourcepub fn transform_out_of_core(
&self,
loader: &mut OutOfCoreLoader,
) -> Result<Vec<Array2<f64>>>
pub fn transform_out_of_core( &self, loader: &mut OutOfCoreLoader, ) -> Result<Vec<Array2<f64>>>
Transform data out-of-core
Auto Trait Implementations§
impl Freeze for OutOfCoreNystroem
impl RefUnwindSafe for OutOfCoreNystroem
impl Send for OutOfCoreNystroem
impl Sync for OutOfCoreNystroem
impl Unpin for OutOfCoreNystroem
impl UnwindSafe for OutOfCoreNystroem
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