pub struct MultiTaskEnsembleRegressorBuilder { /* private fields */ }Implementations§
Source§impl MultiTaskEnsembleRegressorBuilder
impl MultiTaskEnsembleRegressorBuilder
pub fn new() -> Self
pub fn config(self, config: MultiTaskEnsembleConfig) -> Self
pub fn n_estimators_per_task(self, n_estimators: usize) -> Self
pub fn sharing_strategy(self, strategy: TaskSharingStrategy) -> Self
pub fn min_similarity_threshold(self, threshold: f64) -> Self
pub fn build(self) -> MultiTaskEnsembleRegressor
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MultiTaskEnsembleRegressorBuilder
impl RefUnwindSafe for MultiTaskEnsembleRegressorBuilder
impl Send for MultiTaskEnsembleRegressorBuilder
impl Sync for MultiTaskEnsembleRegressorBuilder
impl Unpin for MultiTaskEnsembleRegressorBuilder
impl UnwindSafe for MultiTaskEnsembleRegressorBuilder
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