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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-personalize/types.rb

Overview

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"],
    },
  ],
}

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#categorical_hyper_parameter_rangesArray<Types::CategoricalHyperParameterRange>

The categorical hyperparameters and their ranges.



2820
2821
2822
2823
2824
2825
2826
# File 'lib/aws-sdk-personalize/types.rb', line 2820

class HyperParameterRanges < Struct.new(
  :integer_hyper_parameter_ranges,
  :continuous_hyper_parameter_ranges,
  :categorical_hyper_parameter_ranges)
  SENSITIVE = []
  include Aws::Structure
end

#continuous_hyper_parameter_rangesArray<Types::ContinuousHyperParameterRange>

The continuous hyperparameters and their ranges.



2820
2821
2822
2823
2824
2825
2826
# File 'lib/aws-sdk-personalize/types.rb', line 2820

class HyperParameterRanges < Struct.new(
  :integer_hyper_parameter_ranges,
  :continuous_hyper_parameter_ranges,
  :categorical_hyper_parameter_ranges)
  SENSITIVE = []
  include Aws::Structure
end

#integer_hyper_parameter_rangesArray<Types::IntegerHyperParameterRange>

The integer-valued hyperparameters and their ranges.



2820
2821
2822
2823
2824
2825
2826
# File 'lib/aws-sdk-personalize/types.rb', line 2820

class HyperParameterRanges < Struct.new(
  :integer_hyper_parameter_ranges,
  :continuous_hyper_parameter_ranges,
  :categorical_hyper_parameter_ranges)
  SENSITIVE = []
  include Aws::Structure
end