interface AlgorithmHyperParameterRangesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Personalize.CfnSolution.AlgorithmHyperParameterRangesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnSolution_AlgorithmHyperParameterRangesProperty |
Java | software.amazon.awscdk.services.personalize.CfnSolution.AlgorithmHyperParameterRangesProperty |
Python | aws_cdk.aws_personalize.CfnSolution.AlgorithmHyperParameterRangesProperty |
TypeScript | aws-cdk-lib » aws_personalize » CfnSolution » AlgorithmHyperParameterRangesProperty |
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 { aws_personalize as personalize } from 'aws-cdk-lib';
const algorithmHyperParameterRangesProperty: personalize.CfnSolution.AlgorithmHyperParameterRangesProperty = {
categoricalHyperParameterRanges: [{
name: 'name',
values: ['values'],
}],
continuousHyperParameterRanges: [{
maxValue: 123,
minValue: 123,
name: 'name',
}],
integerHyperParameterRanges: [{
maxValue: 123,
minValue: 123,
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| categorical | IResolvable | (IResolvable | Categorical)[] | Provides the name and range of a categorical hyperparameter. |
| continuous | IResolvable | (IResolvable | Continuous)[] | Provides the name and range of a continuous hyperparameter. |
| integer | IResolvable | (IResolvable | Integer)[] | Provides the name and range of an integer-valued hyperparameter. |
categoricalHyperParameterRanges?
Type:
IResolvable | (IResolvable | Categorical)[]
(optional)
Provides the name and range of a categorical hyperparameter.
continuousHyperParameterRanges?
Type:
IResolvable | (IResolvable | Continuous)[]
(optional)
Provides the name and range of a continuous hyperparameter.
integerHyperParameterRanges?
Type:
IResolvable | (IResolvable | Integer)[]
(optional)
Provides the name and range of an integer-valued hyperparameter.

.NET
Go
Java
Python
TypeScript