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

Class: Aws::ForecastService::Types::ParameterRanges

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

Overview

Note:

When passing ParameterRanges as input to an Aws::Client method, you can use a vanilla Hash:

{
  categorical_parameter_ranges: [
    {
      name: "Name", # required
      values: ["Value"], # required
    },
  ],
  continuous_parameter_ranges: [
    {
      name: "Name", # required
      max_value: 1.0, # required
      min_value: 1.0, # required
      scaling_type: "Auto", # accepts Auto, Linear, Logarithmic, ReverseLogarithmic
    },
  ],
  integer_parameter_ranges: [
    {
      name: "Name", # required
      max_value: 1, # required
      min_value: 1, # required
      scaling_type: "Auto", # accepts Auto, Linear, Logarithmic, ReverseLogarithmic
    },
  ],
}

Specifies the categorical, continuous, and integer hyperparameters, and their ranges of tunable values. The range of tunable values determines which values that a hyperparameter tuning job can choose for the specified hyperparameter. This object is part of the HyperParameterTuningJobConfig object.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#categorical_parameter_rangesArray<Types::CategoricalParameterRange>

Specifies the tunable range for each categorical hyperparameter.

Returns:

#continuous_parameter_rangesArray<Types::ContinuousParameterRange>

Specifies the tunable range for each continuous hyperparameter.

Returns:

#integer_parameter_rangesArray<Types::IntegerParameterRange>

Specifies the tunable range for each integer hyperparameter.

Returns: