Class: Aws::SageMaker::Types::ParameterRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ParameterRange
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Defines the possible values for categorical, continuous, and integer hyperparameters to be used by an algorithm.
Constant Summary collapse
- SENSITIVE =
[]
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.
36080 36081 36082 36083 36084 36085 36086 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 36080 class ParameterRange < Struct.new( :integer_parameter_range_specification, :continuous_parameter_range_specification, :categorical_parameter_range_specification) SENSITIVE = [] include Aws::Structure end |
#continuous_parameter_range_specification ⇒ Types::ContinuousParameterRangeSpecification
A ContinuousParameterRangeSpecification
object that defines the
possible values for a continuous hyperparameter.
36080 36081 36082 36083 36084 36085 36086 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 36080 class ParameterRange < Struct.new( :integer_parameter_range_specification, :continuous_parameter_range_specification, :categorical_parameter_range_specification) SENSITIVE = [] include Aws::Structure end |
#integer_parameter_range_specification ⇒ Types::IntegerParameterRangeSpecification
A IntegerParameterRangeSpecification
object that defines the
possible values for an integer hyperparameter.
36080 36081 36082 36083 36084 36085 36086 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 36080 class ParameterRange < Struct.new( :integer_parameter_range_specification, :continuous_parameter_range_specification, :categorical_parameter_range_specification) SENSITIVE = [] include Aws::Structure end |