Interface CfnSolution.AlgorithmHyperParameterRangesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSolution.AlgorithmHyperParameterRangesProperty.Jsii$Proxy
- Enclosing class:
CfnSolution
@Stability(Stable)
public static interface CfnSolution.AlgorithmHyperParameterRangesProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the hyperparameters and their ranges.
Hyperparameters can be categorical, continuous, or integer-valued.
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.personalize.*;
AlgorithmHyperParameterRangesProperty algorithmHyperParameterRangesProperty = AlgorithmHyperParameterRangesProperty.builder()
.categoricalHyperParameterRanges(List.of(CategoricalHyperParameterRangeProperty.builder()
.name("name")
.values(List.of("values"))
.build()))
.continuousHyperParameterRanges(List.of(ContinuousHyperParameterRangeProperty.builder()
.maxValue(123)
.minValue(123)
.name("name")
.build()))
.integerHyperParameterRanges(List.of(IntegerHyperParameterRangeProperty.builder()
.maxValue(123)
.minValue(123)
.name("name")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSolution.AlgorithmHyperParameterRangesPropertystatic final classAn implementation forCfnSolution.AlgorithmHyperParameterRangesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategoricalHyperParameterRanges
Provides the name and range of a categorical hyperparameter.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSolution.CategoricalHyperParameterRangeProperty>- See Also:
-
getContinuousHyperParameterRanges
Provides the name and range of a continuous hyperparameter.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSolution.ContinuousHyperParameterRangeProperty>- See Also:
-
getIntegerHyperParameterRanges
Provides the name and range of an integer-valued hyperparameter.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSolution.IntegerHyperParameterRangeProperty>- See Also:
-
builder
-