interface TrainingMetricProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.TrainingMetricProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_TrainingMetricProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.TrainingMetricProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.TrainingMetricProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelCardPropsMixin » TrainingMetricProperty |
A result from a SageMaker AI training job.
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 trainingMetricProperty: sagemaker_mixins.CfnModelCardPropsMixin.TrainingMetricProperty = {
name: 'name',
notes: 'notes',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the result from the SageMaker AI training job. |
| notes? | string | Any additional notes describing the result of the training job. |
| value? | number | The value of a result from the SageMaker AI training job. |
name?
Type:
string
(optional)
The name of the result from the SageMaker AI training job.
notes?
Type:
string
(optional)
Any additional notes describing the result of the training job.
value?
Type:
number
(optional)
The value of a result from the SageMaker AI training job.

.NET
Go
Java
Python
TypeScript