interface TrainingMetricProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelCardPropsMixin.TrainingMetricProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelCardPropsMixin_TrainingMetricProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelCardPropsMixin.TrainingMetricProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelCardPropsMixin.TrainingMetricProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const trainingMetricProperty: sagemaker.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