pub struct BMAConfig {
pub prior_type: PriorType,
pub evidence_method: EvidenceMethod,
pub min_weight_threshold: f64,
pub normalize_weights: bool,
pub use_log_space: bool,
pub regularization_lambda: f64,
pub bootstrap_samples: usize,
pub cv_folds: usize,
}Fields§
§prior_type: PriorType§evidence_method: EvidenceMethod§min_weight_threshold: f64§normalize_weights: bool§use_log_space: bool§regularization_lambda: f64§bootstrap_samples: usize§cv_folds: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for BMAConfig
impl RefUnwindSafe for BMAConfig
impl Send for BMAConfig
impl Sync for BMAConfig
impl Unpin for BMAConfig
impl UnwindSafe for BMAConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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