interface BiasProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelPackagePropsMixin.BiasProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelPackagePropsMixin_BiasProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelPackagePropsMixin.BiasProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelPackagePropsMixin.BiasProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnModelPackagePropsMixin » BiasProperty |
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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const biasProperty: sagemaker.CfnModelPackagePropsMixin.BiasProperty = {
postTrainingReport: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
preTrainingReport: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
report: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| post | IResolvable | Metrics | The post-training bias report for a model. |
| pre | IResolvable | Metrics | The pre-training bias report for a model. |
| report? | IResolvable | Metrics | The bias report for a model. |
postTrainingReport?
Type:
IResolvable | Metrics
(optional)
The post-training bias report for a model.
preTrainingReport?
Type:
IResolvable | Metrics
(optional)
The pre-training bias report for a model.
report?
Type:
IResolvable | Metrics
(optional)
The bias report for a model.

.NET
Go
Java
Python
TypeScript