Class: Aws::Personalize::Types::DefaultCategoricalHyperParameterRange

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-personalize/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

Instance Attribute Details

#is_tunableBoolean

Whether the hyperparameter is tunable.

Returns:

  • (Boolean)


2518
2519
2520
2521
2522
2523
2524
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2518

class DefaultCategoricalHyperParameterRange < Struct.new(
  :name,
  :values,
  :is_tunable)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the hyperparameter.

Returns:

  • (String)


2518
2519
2520
2521
2522
2523
2524
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2518

class DefaultCategoricalHyperParameterRange < Struct.new(
  :name,
  :values,
  :is_tunable)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

A list of the categories for the hyperparameter.

Returns:

  • (Array<String>)


2518
2519
2520
2521
2522
2523
2524
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2518

class DefaultCategoricalHyperParameterRange < Struct.new(
  :name,
  :values,
  :is_tunable)
  SENSITIVE = []
  include Aws::Structure
end