Struct aws_sdk_sagemaker::model::clarify_explainer_config::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ClarifyExplainerConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn enable_explanations(self, input: impl Into<String>) -> Self
pub fn enable_explanations(self, input: impl Into<String>) -> Self
A JMESPath boolean expression used to filter which records to explain. Explanations are activated by default. See EnableExplanations
for additional information.
sourcepub fn set_enable_explanations(self, input: Option<String>) -> Self
pub fn set_enable_explanations(self, input: Option<String>) -> Self
A JMESPath boolean expression used to filter which records to explain. Explanations are activated by default. See EnableExplanations
for additional information.
sourcepub fn inference_config(self, input: ClarifyInferenceConfig) -> Self
pub fn inference_config(self, input: ClarifyInferenceConfig) -> Self
The inference configuration parameter for the model container.
sourcepub fn set_inference_config(self, input: Option<ClarifyInferenceConfig>) -> Self
pub fn set_inference_config(self, input: Option<ClarifyInferenceConfig>) -> Self
The inference configuration parameter for the model container.
sourcepub fn shap_config(self, input: ClarifyShapConfig) -> Self
pub fn shap_config(self, input: ClarifyShapConfig) -> Self
The configuration for SHAP analysis.
sourcepub fn set_shap_config(self, input: Option<ClarifyShapConfig>) -> Self
pub fn set_shap_config(self, input: Option<ClarifyShapConfig>) -> Self
The configuration for SHAP analysis.
sourcepub fn build(self) -> ClarifyExplainerConfig
pub fn build(self) -> ClarifyExplainerConfig
Consumes the builder and constructs a ClarifyExplainerConfig
.