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.
      5560 5561 5562 5563 5564 5565  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 5560 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end  | 
  
#min_value ⇒ String
The minimum floating-point value allowed.
      5560 5561 5562 5563 5564 5565  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 5560 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end  |