interface BiasProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.BiasProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackage_BiasProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnModelPackage.BiasProperty |
![]() | aws_cdk.aws_sagemaker.CfnModelPackage.BiasProperty |
![]() | aws-cdk-lib » aws_sagemaker » CfnModelPackage » 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-lib';
const biasProperty: sagemaker.CfnModelPackage.BiasProperty = {
postTrainingReport: {
contentType: 'contentType',
s3Uri: 's3Uri',
// the properties below are optional
contentDigest: 'contentDigest',
},
preTrainingReport: {
contentType: 'contentType',
s3Uri: 's3Uri',
// the properties below are optional
contentDigest: 'contentDigest',
},
report: {
contentType: 'contentType',
s3Uri: 's3Uri',
// the properties below are optional
contentDigest: 'contentDigest',
},
};
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.