public static interface Algorithm.Builder extends SdkPojo, CopyableBuilder<Algorithm.Builder,Algorithm>
| Modifier and Type | Method and Description |
|---|---|
Algorithm.Builder |
algorithmArn(String algorithmArn)
The Amazon Resource Name (ARN) of the algorithm.
|
Algorithm.Builder |
algorithmImage(AlgorithmImage algorithmImage)
The URI of the Docker container for the algorithm image.
|
default Algorithm.Builder |
algorithmImage(Consumer<AlgorithmImage.Builder> algorithmImage)
The URI of the Docker container for the algorithm image.
|
Algorithm.Builder |
creationDateTime(Instant creationDateTime)
The date and time (in Unix time) that the algorithm was created.
|
default Algorithm.Builder |
defaultHyperParameterRanges(Consumer<DefaultHyperParameterRanges.Builder> defaultHyperParameterRanges)
Specifies the default hyperparameters, their ranges, and whether they are tunable.
|
Algorithm.Builder |
defaultHyperParameterRanges(DefaultHyperParameterRanges defaultHyperParameterRanges)
Specifies the default hyperparameters, their ranges, and whether they are tunable.
|
Algorithm.Builder |
defaultHyperParameters(Map<String,String> defaultHyperParameters)
Specifies the default hyperparameters.
|
Algorithm.Builder |
defaultResourceConfig(Map<String,String> defaultResourceConfig)
Specifies the default maximum number of training jobs and parallel training jobs.
|
Algorithm.Builder |
lastUpdatedDateTime(Instant lastUpdatedDateTime)
The date and time (in Unix time) that the algorithm was last updated.
|
Algorithm.Builder |
name(String name)
The name of the algorithm.
|
Algorithm.Builder |
roleArn(String roleArn)
The Amazon Resource Name (ARN) of the role.
|
Algorithm.Builder |
trainingInputMode(String trainingInputMode)
The training input mode.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildAlgorithm.Builder name(String name)
The name of the algorithm.
name - The name of the algorithm.Algorithm.Builder algorithmArn(String algorithmArn)
The Amazon Resource Name (ARN) of the algorithm.
algorithmArn - The Amazon Resource Name (ARN) of the algorithm.Algorithm.Builder algorithmImage(AlgorithmImage algorithmImage)
The URI of the Docker container for the algorithm image.
algorithmImage - The URI of the Docker container for the algorithm image.default Algorithm.Builder algorithmImage(Consumer<AlgorithmImage.Builder> algorithmImage)
The URI of the Docker container for the algorithm image.
This is a convenience method that creates an instance of theAlgorithmImage.Builder avoiding the need
to create one manually via AlgorithmImage.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to algorithmImage(AlgorithmImage).algorithmImage - a consumer that will call methods on AlgorithmImage.BuilderalgorithmImage(AlgorithmImage)Algorithm.Builder defaultHyperParameters(Map<String,String> defaultHyperParameters)
Specifies the default hyperparameters.
defaultHyperParameters - Specifies the default hyperparameters.Algorithm.Builder defaultHyperParameterRanges(DefaultHyperParameterRanges defaultHyperParameterRanges)
Specifies the default hyperparameters, their ranges, and whether they are tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).
defaultHyperParameterRanges - Specifies the default hyperparameters, their ranges, and whether they are tunable. A tunable
hyperparameter can have its value determined during hyperparameter optimization (HPO).default Algorithm.Builder defaultHyperParameterRanges(Consumer<DefaultHyperParameterRanges.Builder> defaultHyperParameterRanges)
Specifies the default hyperparameters, their ranges, and whether they are tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).
This is a convenience method that creates an instance of theDefaultHyperParameterRanges.Builder
avoiding the need to create one manually via DefaultHyperParameterRanges.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to defaultHyperParameterRanges(DefaultHyperParameterRanges).defaultHyperParameterRanges - a consumer that will call methods on DefaultHyperParameterRanges.BuilderdefaultHyperParameterRanges(DefaultHyperParameterRanges)Algorithm.Builder defaultResourceConfig(Map<String,String> defaultResourceConfig)
Specifies the default maximum number of training jobs and parallel training jobs.
defaultResourceConfig - Specifies the default maximum number of training jobs and parallel training jobs.Algorithm.Builder trainingInputMode(String trainingInputMode)
The training input mode.
trainingInputMode - The training input mode.Algorithm.Builder roleArn(String roleArn)
The Amazon Resource Name (ARN) of the role.
roleArn - The Amazon Resource Name (ARN) of the role.Algorithm.Builder creationDateTime(Instant creationDateTime)
The date and time (in Unix time) that the algorithm was created.
creationDateTime - The date and time (in Unix time) that the algorithm was created.Algorithm.Builder lastUpdatedDateTime(Instant lastUpdatedDateTime)
The date and time (in Unix time) that the algorithm was last updated.
lastUpdatedDateTime - The date and time (in Unix time) that the algorithm was last updated.Copyright © 2022. All rights reserved.