Interface CfnModelPackagePropsMixin.ModelMetricsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackagePropsMixin.ModelMetricsProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackagePropsMixin
@Stability(Stable)
public static interface CfnModelPackagePropsMixin.ModelMetricsProperty
extends software.amazon.jsii.JsiiSerializable
Contains metrics captured from a model.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
ModelMetricsProperty modelMetricsProperty = ModelMetricsProperty.builder()
.bias(BiasProperty.builder()
.postTrainingReport(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.preTrainingReport(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.report(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.build())
.explainability(ExplainabilityProperty.builder()
.report(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.build())
.modelDataQuality(ModelDataQualityProperty.builder()
.constraints(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.statistics(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.build())
.modelQuality(ModelQualityProperty.builder()
.constraints(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.statistics(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackagePropsMixin.ModelMetricsPropertystatic final classAn implementation forCfnModelPackagePropsMixin.ModelMetricsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBias
Metrics that measure bias in a model.Returns union: either
IResolvableorCfnModelPackagePropsMixin.BiasProperty- See Also:
-
getExplainability
Metrics that help explain a model.Returns union: either
IResolvableorCfnModelPackagePropsMixin.ExplainabilityProperty- See Also:
-
getModelDataQuality
Metrics that measure the quality of the input data for a model.Returns union: either
IResolvableorCfnModelPackagePropsMixin.ModelDataQualityProperty- See Also:
-
getModelQuality
Metrics that measure the quality of a model.Returns union: either
IResolvableorCfnModelPackagePropsMixin.ModelQualityProperty- See Also:
-
builder
-