Class: Aws::Personalize::Types::DefaultContinuousHyperParameterRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::DefaultContinuousHyperParameterRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides the name and default range of a continuous hyperparameter and whether the hyperparameter is tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#is_tunable ⇒ Boolean
Whether the hyperparameter is tunable.
-
#max_value ⇒ Float
The maximum allowable value for the hyperparameter.
-
#min_value ⇒ Float
The minimum allowable value for the hyperparameter.
-
#name ⇒ String
The name of the hyperparameter.
Instance Attribute Details
#is_tunable ⇒ Boolean
Whether the hyperparameter is tunable.
2743 2744 2745 2746 2747 2748 2749 2750 |
# File 'lib/aws-sdk-personalize/types.rb', line 2743 class DefaultContinuousHyperParameterRange < Struct.new( :name, :min_value, :max_value, :is_tunable) SENSITIVE = [] include Aws::Structure end |
#max_value ⇒ Float
The maximum allowable value for the hyperparameter.
2743 2744 2745 2746 2747 2748 2749 2750 |
# File 'lib/aws-sdk-personalize/types.rb', line 2743 class DefaultContinuousHyperParameterRange < Struct.new( :name, :min_value, :max_value, :is_tunable) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ Float
The minimum allowable value for the hyperparameter.
2743 2744 2745 2746 2747 2748 2749 2750 |
# File 'lib/aws-sdk-personalize/types.rb', line 2743 class DefaultContinuousHyperParameterRange < Struct.new( :name, :min_value, :max_value, :is_tunable) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the hyperparameter.
2743 2744 2745 2746 2747 2748 2749 2750 |
# File 'lib/aws-sdk-personalize/types.rb', line 2743 class DefaultContinuousHyperParameterRange < Struct.new( :name, :min_value, :max_value, :is_tunable) SENSITIVE = [] include Aws::Structure end |