aws-cdk-lib.aws_sagemaker.CfnModelCard.TrainingMetricProperty

interface TrainingMetricProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelCard.TrainingMetricProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelCard_TrainingMetricProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelCard.TrainingMetricProperty
Pythonaws_cdk.aws_sagemaker.CfnModelCard.TrainingMetricProperty
TypeScript aws-cdk-lib » 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 { 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

NameTypeDescription
namestringThe name of the result from the SageMaker training job.
valuenumberThe value of a result from the SageMaker training job.
notes?stringAny 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.