You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Personalize::Types::HyperParameterRanges

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing HyperParameterRanges as input to an Aws::Client method, you can use a vanilla 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"],
    },
  ],
}

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

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#categorical_hyper_parameter_rangesArray<Types::CategoricalHyperParameterRange>

The categorical hyperparameters and their ranges.

Returns:

#continuous_hyper_parameter_rangesArray<Types::ContinuousHyperParameterRange>

The continuous hyperparameters and their ranges.

Returns:

#integer_hyper_parameter_rangesArray<Types::IntegerHyperParameterRange>

The integer-valued hyperparameters and their ranges.

Returns: