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.
5266 5267 5268 5269 5270 5271 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5266 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ String
The minimum floating-point value allowed.
5266 5267 5268 5269 5270 5271 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5266 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |