Interface CfnModelPackage.BiasProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackage.BiasProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackage
@Stability(Stable)
public static interface CfnModelPackage.BiasProperty
extends software.amazon.jsii.JsiiSerializable
Contains bias metrics for 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.services.sagemaker.*;
BiasProperty biasProperty = BiasProperty.builder()
.postTrainingReport(MetricsSourceProperty.builder()
.contentType("contentType")
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.build())
.preTrainingReport(MetricsSourceProperty.builder()
.contentType("contentType")
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.build())
.report(MetricsSourceProperty.builder()
.contentType("contentType")
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackage.BiasPropertystatic final classAn implementation forCfnModelPackage.BiasProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPostTrainingReport
The post-training bias report for a model.Returns union: either
IResolvableorCfnModelPackage.MetricsSourceProperty- See Also:
-
getPreTrainingReport
The pre-training bias report for a model.Returns union: either
IResolvableorCfnModelPackage.MetricsSourceProperty- See Also:
-
getReport
The bias report for a model.Returns union: either
IResolvableorCfnModelPackage.MetricsSourceProperty- See Also:
-
builder
-