class Aws::Personalize::Types::HyperParameterRanges

Specifies the hyperparameters and their ranges. Hyperparameters can be categorical, continuous, or integer-valued.

@note When making an API call, you may pass HyperParameterRanges

data as a hash:

    {
      integer_hyper_parameter_ranges: [
        {
          name: "ParameterName",
          min_value: 1,
          max_value: 1,
        },
      ],
      continuous_hyper_parameter_ranges: [
        {
          name: "ParameterName",
          min_value: 1.0,
          max_value: 1.0,
        },
      ],
      categorical_hyper_parameter_ranges: [
        {
          name: "ParameterName",
          values: ["CategoricalValue"],
        },
      ],
    }

@!attribute [rw] integer_hyper_parameter_ranges

The integer-valued hyperparameters and their ranges.
@return [Array<Types::IntegerHyperParameterRange>]

@!attribute [rw] continuous_hyper_parameter_ranges

The continuous hyperparameters and their ranges.
@return [Array<Types::ContinuousHyperParameterRange>]

@!attribute [rw] categorical_hyper_parameter_ranges

The categorical hyperparameters and their ranges.
@return [Array<Types::CategoricalHyperParameterRange>]

@see docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/HyperParameterRanges AWS API Documentation

Constants

SENSITIVE