You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SageMaker::Types::ParameterRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ParameterRange
- Defined in:
- (unknown)
Overview
When passing ParameterRange as input to an Aws::Client method, you can use a vanilla Hash:
{
integer_parameter_range_specification: {
min_value: "ParameterValue", # required
max_value: "ParameterValue", # required
},
continuous_parameter_range_specification: {
min_value: "ParameterValue", # required
max_value: "ParameterValue", # required
},
categorical_parameter_range_specification: {
values: ["ParameterValue"], # required
},
}
Defines the possible values for categorical, continuous, and integer hyperparameters to be used by an algorithm.
Returned by:
Instance Attribute Summary collapse
-
#categorical_parameter_range_specification ⇒ Types::CategoricalParameterRangeSpecification
A
CategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter. -
#continuous_parameter_range_specification ⇒ Types::ContinuousParameterRangeSpecification
A
ContinuousParameterRangeSpecification
object that defines the possible values for a continuous hyperparameter. -
#integer_parameter_range_specification ⇒ Types::IntegerParameterRangeSpecification
A
IntegerParameterRangeSpecification
object that defines the possible values for an integer hyperparameter.
Instance Attribute Details
#categorical_parameter_range_specification ⇒ Types::CategoricalParameterRangeSpecification
A CategoricalParameterRangeSpecification
object that defines the
possible values for a categorical hyperparameter.
#continuous_parameter_range_specification ⇒ Types::ContinuousParameterRangeSpecification
A ContinuousParameterRangeSpecification
object that defines the
possible values for a continuous hyperparameter.
#integer_parameter_range_specification ⇒ Types::IntegerParameterRangeSpecification
A IntegerParameterRangeSpecification
object that defines the possible
values for an integer hyperparameter.