Interface CfnModelCardPropsMixin.TrainingJobDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelCardPropsMixin.TrainingJobDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnModelCardPropsMixin
@Stability(Stable)
public static interface CfnModelCardPropsMixin.TrainingJobDetailsProperty
extends software.amazon.jsii.JsiiSerializable
The overview of a 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.cfnpropertymixins.services.sagemaker.*;
TrainingJobDetailsProperty trainingJobDetailsProperty = TrainingJobDetailsProperty.builder()
.hyperParameters(List.of(TrainingHyperParameterProperty.builder()
.name("name")
.value("value")
.build()))
.trainingArn("trainingArn")
.trainingDatasets(List.of("trainingDatasets"))
.trainingEnvironment(TrainingEnvironmentProperty.builder()
.containerImage(List.of("containerImage"))
.build())
.trainingMetrics(List.of(TrainingMetricProperty.builder()
.name("name")
.notes("notes")
.value(123)
.build()))
.userProvidedHyperParameters(List.of(TrainingHyperParameterProperty.builder()
.name("name")
.value("value")
.build()))
.userProvidedTrainingMetrics(List.of(TrainingMetricProperty.builder()
.name("name")
.notes("notes")
.value(123)
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelCardPropsMixin.TrainingJobDetailsPropertystatic final classAn implementation forCfnModelCardPropsMixin.TrainingJobDetailsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe hyper parameters used in the training job.default StringThe SageMaker AI training job Amazon Resource Name (ARN).The location of the datasets used to train the model.default ObjectThe SageMaker AI training job image URI.default ObjectThe SageMaker AI training job results.default ObjectAdditional hyper parameters that you've specified when training the model.default ObjectCustom training job results.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHyperParameters
The hyper parameters used in the training job.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnModelCardPropsMixin.TrainingHyperParameterProperty>- See Also:
-
getTrainingArn
The SageMaker AI training job Amazon Resource Name (ARN).- See Also:
-
getTrainingDatasets
The location of the datasets used to train the model.- See Also:
-
getTrainingEnvironment
The SageMaker AI training job image URI.Returns union: either
IResolvableorCfnModelCardPropsMixin.TrainingEnvironmentProperty- See Also:
-
getTrainingMetrics
The SageMaker AI training job results.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnModelCardPropsMixin.TrainingMetricProperty>- See Also:
-
getUserProvidedHyperParameters
Additional hyper parameters that you've specified when training the model.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnModelCardPropsMixin.TrainingHyperParameterProperty>- See Also:
-
getUserProvidedTrainingMetrics
Custom training job results.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnModelCardPropsMixin.TrainingMetricProperty>- See Also:
-
builder
-