Class: Aws::SageMaker::Types::ContinuousParameterRangeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ContinuousParameterRangeSpecification
- Defined in:
- gems/aws-sdk-sagemaker/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.
5527 5528 5529 5530 5531 5532 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5527 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ String
The minimum floating-point value allowed.
5527 5528 5529 5530 5531 5532 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5527 class ContinuousParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |