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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#is_tunableBoolean

Indicates whether the hyperparameter is tunable.

Returns:

  • (Boolean)


1793
1794
1795
1796
1797
1798
1799
1800
# File 'lib/aws-sdk-personalize/types.rb', line 1793

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)


1793
1794
1795
1796
1797
1798
1799
1800
# File 'lib/aws-sdk-personalize/types.rb', line 1793

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)


1793
1794
1795
1796
1797
1798
1799
1800
# File 'lib/aws-sdk-personalize/types.rb', line 1793

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

#nameString

The name of the hyperparameter.

Returns:

  • (String)


1793
1794
1795
1796
1797
1798
1799
1800
# File 'lib/aws-sdk-personalize/types.rb', line 1793

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