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
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.
5788 5789 5790 5791 5792 5793 5794 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5788 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.
5788 5789 5790 5791 5792 5793 5794 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5788 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.
5788 5789 5790 5791 5792 5793 5794 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5788 class ParameterRanges < Struct.new( :categorical_parameter_ranges, :continuous_parameter_ranges, :integer_parameter_ranges) SENSITIVE = [] include Aws::Structure end |