pub struct DeepLearningBuilder { /* private fields */ }Expand description
Builder for deep learning imputation configuration
Implementations§
Source§impl DeepLearningBuilder
impl DeepLearningBuilder
pub fn autoencoder(self) -> Self
pub fn vae(self) -> Self
pub fn gan(self) -> Self
pub fn learning_rate(self, lr: f64) -> Self
pub fn epochs(self, epochs: usize) -> Self
pub fn batch_size(self, batch_size: usize) -> Self
pub fn device(self, device: &str) -> Self
pub fn finish(self) -> ImputationBuilder
Auto Trait Implementations§
impl Freeze for DeepLearningBuilder
impl RefUnwindSafe for DeepLearningBuilder
impl Send for DeepLearningBuilder
impl Sync for DeepLearningBuilder
impl Unpin for DeepLearningBuilder
impl UnwindSafe for DeepLearningBuilder
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