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

.NET
Go
Java
Python
TypeScript