Class: Aws::SageMaker::Types::ContinuousParameterRangeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ContinuousParameterRangeSpecification
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Defines the possible values for a continuous hyperparameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_value ⇒ String
The maximum floating-point value allowed.
-
#min_value ⇒ String
The minimum floating-point value allowed.
Instance Attribute Details
#max_value ⇒ String
The maximum floating-point value allowed.
5235 5236 5237 5238 5239 5240 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5235 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ String
The minimum floating-point value allowed.
5235 5236 5237 5238 5239 5240 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5235 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |