Class: Aws::ForecastService::Types::ParameterRanges
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::ParameterRanges
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Note:
When making an API call, you may pass ParameterRanges data as a 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#categorical_parameter_ranges ⇒ Array<Types::CategoricalParameterRange>
Specifies the tunable range for each categorical hyperparameter.
-
#continuous_parameter_ranges ⇒ Array<Types::ContinuousParameterRange>
Specifies the tunable range for each continuous hyperparameter.
-
#integer_parameter_ranges ⇒ Array<Types::IntegerParameterRange>
Specifies the tunable range for each integer hyperparameter.
Instance Attribute Details
#categorical_parameter_ranges ⇒ Array<Types::CategoricalParameterRange>
Specifies the tunable range for each categorical hyperparameter.
5128 5129 5130 5131 5132 5133 5134 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5128 class ParameterRanges < Struct.new( :categorical_parameter_ranges, :continuous_parameter_ranges, :integer_parameter_ranges) SENSITIVE = [] include Aws::Structure end |
#continuous_parameter_ranges ⇒ Array<Types::ContinuousParameterRange>
Specifies the tunable range for each continuous hyperparameter.
5128 5129 5130 5131 5132 5133 5134 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5128 class ParameterRanges < Struct.new( :categorical_parameter_ranges, :continuous_parameter_ranges, :integer_parameter_ranges) SENSITIVE = [] include Aws::Structure end |
#integer_parameter_ranges ⇒ Array<Types::IntegerParameterRange>
Specifies the tunable range for each integer hyperparameter.
5128 5129 5130 5131 5132 5133 5134 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5128 class ParameterRanges < Struct.new( :categorical_parameter_ranges, :continuous_parameter_ranges, :integer_parameter_ranges) SENSITIVE = [] include Aws::Structure end |