Interface CfnEndpointConfig.ClarifyShapBaselineConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpointConfig.ClarifyShapBaselineConfigProperty.Jsii$Proxy
Enclosing class:
CfnEndpointConfig

@Stability(Stable) public static interface CfnEndpointConfig.ClarifyShapBaselineConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the SHAP baseline (also called the background or reference dataset) of the Kernal SHAP algorithm.

  • The number of records in the baseline data determines the size of the synthetic dataset, which has an impact on latency of explainability requests. For more information, see the Synthetic data of Configure and create an endpoint .
  • ShapBaseline and ShapBaselineUri are mutually exclusive parameters. One or the either is required to configure a SHAP baseline.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 ClarifyShapBaselineConfigProperty clarifyShapBaselineConfigProperty = ClarifyShapBaselineConfigProperty.builder()
         .mimeType("mimeType")
         .shapBaseline("shapBaseline")
         .shapBaselineUri("shapBaselineUri")
         .build();
 

See Also: