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.
5227 5228 5229 5230 5231 5232 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5227 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ String
The minimum floating-point value allowed.
5227 5228 5229 5230 5231 5232 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5227 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |