Class: Aws::Personalize::Types::DefaultCategoricalHyperParameterRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::DefaultCategoricalHyperParameterRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides the name and default range of a categorical 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.
-
#name ⇒ String
The name of the hyperparameter.
-
#values ⇒ Array<String>
A list of the categories for the hyperparameter.
Instance Attribute Details
#is_tunable ⇒ Boolean
Whether the hyperparameter is tunable.
2713 2714 2715 2716 2717 2718 2719 |
# File 'lib/aws-sdk-personalize/types.rb', line 2713 class DefaultCategoricalHyperParameterRange < Struct.new( :name, :values, :is_tunable) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the hyperparameter.
2713 2714 2715 2716 2717 2718 2719 |
# File 'lib/aws-sdk-personalize/types.rb', line 2713 class DefaultCategoricalHyperParameterRange < Struct.new( :name, :values, :is_tunable) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
A list of the categories for the hyperparameter.
2713 2714 2715 2716 2717 2718 2719 |
# File 'lib/aws-sdk-personalize/types.rb', line 2713 class DefaultCategoricalHyperParameterRange < Struct.new( :name, :values, :is_tunable) SENSITIVE = [] include Aws::Structure end |