interface TrainingMetricProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelCard.TrainingMetricProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelCard_TrainingMetricProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelCard.TrainingMetricProperty |
Python | aws_cdk.aws_sagemaker.CfnModelCard.TrainingMetricProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnModelCard » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const trainingMetricProperty: sagemaker.CfnModelCard.TrainingMetricProperty = {
name: 'name',
value: 123,
// the properties below are optional
notes: 'notes',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the result from the SageMaker AI training job. |
| value | number | The value of a result from the SageMaker AI training job. |
| notes? | string | Any additional notes describing the result of the training job. |
name
Type:
string
The name of the result from the SageMaker AI training job.
value
Type:
number
The value of a result from the SageMaker AI training job.
notes?
Type:
string
(optional)
Any additional notes describing the result of the training job.

.NET
Go
Java
Python
TypeScript