Class: Aws::Personalize::Types::DefaultIntegerHyperParameterRange

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 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

Instance Attribute Details

#is_tunableBoolean

Indicates whether the hyperparameter is tunable.

Returns:

  • (Boolean)


2605
2606
2607
2608
2609
2610
2611
2612
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2605

class DefaultIntegerHyperParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value,
  :is_tunable)
  SENSITIVE = []
  include Aws::Structure
end

#max_valueInteger

The maximum allowable value for the hyperparameter.

Returns:

  • (Integer)


2605
2606
2607
2608
2609
2610
2611
2612
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2605

class DefaultIntegerHyperParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value,
  :is_tunable)
  SENSITIVE = []
  include Aws::Structure
end

#min_valueInteger

The minimum allowable value for the hyperparameter.

Returns:

  • (Integer)


2605
2606
2607
2608
2609
2610
2611
2612
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2605

class DefaultIntegerHyperParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value,
  :is_tunable)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the hyperparameter.

Returns:

  • (String)


2605
2606
2607
2608
2609
2610
2611
2612
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2605

class DefaultIntegerHyperParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value,
  :is_tunable)
  SENSITIVE = []
  include Aws::Structure
end