Interface CfnModelCard.TrainingJobDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelCard.TrainingJobDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnModelCard
@Stability(Stable)
public static interface CfnModelCard.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.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") .value(123) // the properties below are optional .notes("notes") .build())) .userProvidedHyperParameters(List.of(TrainingHyperParameterProperty.builder() .name("name") .value("value") .build())) .userProvidedTrainingMetrics(List.of(TrainingMetricProperty.builder() .name("name") .value(123) // the properties below are optional .notes("notes") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelCard.TrainingJobDetailsProperty
static final class
An implementation forCfnModelCard.TrainingJobDetailsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The hyper parameters used in the training job.default String
The SageMaker training job Amazon Resource Name (ARN).The location of the datasets used to train the model.default Object
The SageMaker training job image URI.default Object
The SageMaker training job results.default Object
Additional hyper parameters that you've specified when training the model.default Object
Custom training job results.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHyperParameters
The hyper parameters used in the training job. -
getTrainingArn
The SageMaker training job Amazon Resource Name (ARN). -
getTrainingDatasets
The location of the datasets used to train the model. -
getTrainingEnvironment
The SageMaker training job image URI. -
getTrainingMetrics
The SageMaker training job results. -
getUserProvidedHyperParameters
Additional hyper parameters that you've specified when training the model. -
getUserProvidedTrainingMetrics
Custom training job results. -
builder
-