Struct aws_sdk_sagemaker::types::builders::BiasBuilder
source · #[non_exhaustive]pub struct BiasBuilder { /* private fields */ }
Expand description
A builder for Bias
.
Implementations§
source§impl BiasBuilder
impl BiasBuilder
sourcepub fn report(self, input: MetricsSource) -> Self
pub fn report(self, input: MetricsSource) -> Self
The bias report for a model
sourcepub fn set_report(self, input: Option<MetricsSource>) -> Self
pub fn set_report(self, input: Option<MetricsSource>) -> Self
The bias report for a model
sourcepub fn get_report(&self) -> &Option<MetricsSource>
pub fn get_report(&self) -> &Option<MetricsSource>
The bias report for a model
sourcepub fn pre_training_report(self, input: MetricsSource) -> Self
pub fn pre_training_report(self, input: MetricsSource) -> Self
The pre-training bias report for a model.
sourcepub fn set_pre_training_report(self, input: Option<MetricsSource>) -> Self
pub fn set_pre_training_report(self, input: Option<MetricsSource>) -> Self
The pre-training bias report for a model.
sourcepub fn get_pre_training_report(&self) -> &Option<MetricsSource>
pub fn get_pre_training_report(&self) -> &Option<MetricsSource>
The pre-training bias report for a model.
sourcepub fn post_training_report(self, input: MetricsSource) -> Self
pub fn post_training_report(self, input: MetricsSource) -> Self
The post-training bias report for a model.
sourcepub fn set_post_training_report(self, input: Option<MetricsSource>) -> Self
pub fn set_post_training_report(self, input: Option<MetricsSource>) -> Self
The post-training bias report for a model.
sourcepub fn get_post_training_report(&self) -> &Option<MetricsSource>
pub fn get_post_training_report(&self) -> &Option<MetricsSource>
The post-training bias report for a model.
Trait Implementations§
source§impl Clone for BiasBuilder
impl Clone for BiasBuilder
source§fn clone(&self) -> BiasBuilder
fn clone(&self) -> BiasBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BiasBuilder
impl Debug for BiasBuilder
source§impl Default for BiasBuilder
impl Default for BiasBuilder
source§fn default() -> BiasBuilder
fn default() -> BiasBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BiasBuilder
impl PartialEq for BiasBuilder
impl StructuralPartialEq for BiasBuilder
Auto Trait Implementations§
impl Freeze for BiasBuilder
impl RefUnwindSafe for BiasBuilder
impl Send for BiasBuilder
impl Sync for BiasBuilder
impl Unpin for BiasBuilder
impl UnwindSafe for BiasBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.