pub struct OutOfCoreRBFSampler { /* private fields */ }Expand description
Out-of-core RBF sampler
Implementations§
Source§impl OutOfCoreRBFSampler
impl OutOfCoreRBFSampler
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_transform_out_of_core(
&mut self,
loader: &mut OutOfCoreLoader,
) -> Result<Vec<Array2<f64>>>
pub fn fit_transform_out_of_core( &mut self, loader: &mut OutOfCoreLoader, ) -> Result<Vec<Array2<f64>>>
Process data out-of-core
Auto Trait Implementations§
impl Freeze for OutOfCoreRBFSampler
impl RefUnwindSafe for OutOfCoreRBFSampler
impl Send for OutOfCoreRBFSampler
impl Sync for OutOfCoreRBFSampler
impl Unpin for OutOfCoreRBFSampler
impl UnwindSafe for OutOfCoreRBFSampler
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