interface TrainingMetricProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelCard.TrainingMetricProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelCard.TrainingMetricProperty |
Python | aws_cdk.aws_sagemaker.CfnModelCard.TrainingMetricProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelCard » TrainingMetricProperty |
A result from a SageMaker training job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
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 training job. |
value | number | The value of a result from the SageMaker 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 training job.
value
Type:
number
The value of a result from the SageMaker training job.
notes?
Type:
string
(optional)
Any additional notes describing the result of the training job.