Interface CfnModelCard.TrainingMetricProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelCard.TrainingMetricProperty.Jsii$Proxy
- Enclosing class:
- CfnModelCard
@Stability(Stable)
public static interface CfnModelCard.TrainingMetricProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
TrainingMetricProperty trainingMetricProperty = TrainingMetricProperty.builder()
.name("name")
.value(123)
// the properties below are optional
.notes("notes")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelCard.TrainingMetricPropertystatic final classAn implementation forCfnModelCard.TrainingMetricProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the result from the SageMaker training job. -
getValue
The value of a result from the SageMaker training job. -
getNotes
Any additional notes describing the result of the training job. -
builder
-