aws-cdk-lib.aws_sagemaker.CfnModelPackage.BiasProperty

interface BiasProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelPackage.BiasProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackage_BiasProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelPackage.BiasProperty
Pythonaws_cdk.aws_sagemaker.CfnModelPackage.BiasProperty
TypeScript 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

NameTypeDescription
postTrainingReport?IResolvable | MetricsSourcePropertyThe post-training bias report for a model.
preTrainingReport?IResolvable | MetricsSourcePropertyThe pre-training bias report for a model.
report?IResolvable | MetricsSourcePropertyThe bias report for a model.

postTrainingReport?

Type: IResolvable | MetricsSourceProperty (optional)

The post-training bias report for a model.


preTrainingReport?

Type: IResolvable | MetricsSourceProperty (optional)

The pre-training bias report for a model.


report?

Type: IResolvable | MetricsSourceProperty (optional)

The bias report for a model.