interface DriftCheckBiasProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.DriftCheckBiasProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_DriftCheckBiasProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.DriftCheckBiasProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.DriftCheckBiasProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » DriftCheckBiasProperty |
Represents the drift check bias baselines that can be used when the model monitor is set using the model package.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const driftCheckBiasProperty: sagemaker_mixins.CfnModelPackagePropsMixin.DriftCheckBiasProperty = {
configFile: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
postTrainingConstraints: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
preTrainingConstraints: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| config | IResolvable | File | The bias config file for a model. |
| post | IResolvable | Metrics | The post-training constraints. |
| pre | IResolvable | Metrics | The pre-training constraints. |
configFile?
Type:
IResolvable | File
(optional)
The bias config file for a model.
postTrainingConstraints?
Type:
IResolvable | Metrics
(optional)
The post-training constraints.
preTrainingConstraints?
Type:
IResolvable | Metrics
(optional)
The pre-training constraints.

.NET
Go
Java
Python
TypeScript