Class: Aws::Personalize::Types::DefaultIntegerHyperParameterRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::DefaultIntegerHyperParameterRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides the name and default range of a integer-valued 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
Indicates whether the hyperparameter is tunable.
-
#max_value ⇒ Integer
The maximum allowable value for the hyperparameter.
-
#min_value ⇒ Integer
The minimum allowable value for the hyperparameter.
-
#name ⇒ String
The name of the hyperparameter.
Instance Attribute Details
#is_tunable ⇒ Boolean
Indicates whether the hyperparameter is tunable.
2800 2801 2802 2803 2804 2805 2806 2807 |
# File 'lib/aws-sdk-personalize/types.rb', line 2800 class DefaultIntegerHyperParameterRange < Struct.new( :name, :min_value, :max_value, :is_tunable) SENSITIVE = [] include Aws::Structure end |
#max_value ⇒ Integer
The maximum allowable value for the hyperparameter.
2800 2801 2802 2803 2804 2805 2806 2807 |
# File 'lib/aws-sdk-personalize/types.rb', line 2800 class DefaultIntegerHyperParameterRange < Struct.new( :name, :min_value, :max_value, :is_tunable) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ Integer
The minimum allowable value for the hyperparameter.
2800 2801 2802 2803 2804 2805 2806 2807 |
# File 'lib/aws-sdk-personalize/types.rb', line 2800 class DefaultIntegerHyperParameterRange < Struct.new( :name, :min_value, :max_value, :is_tunable) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the hyperparameter.
2800 2801 2802 2803 2804 2805 2806 2807 |
# File 'lib/aws-sdk-personalize/types.rb', line 2800 class DefaultIntegerHyperParameterRange < Struct.new( :name, :min_value, :max_value, :is_tunable) SENSITIVE = [] include Aws::Structure end |