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)


2512
2513
2514
2515
2516
2517
2518
2519
# File 'lib/aws-sdk-personalize/types.rb', line 2512

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)


2512
2513
2514
2515
2516
2517
2518
2519
# File 'lib/aws-sdk-personalize/types.rb', line 2512

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)


2512
2513
2514
2515
2516
2517
2518
2519
# File 'lib/aws-sdk-personalize/types.rb', line 2512

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

#nameString

The name of the hyperparameter.

Returns:

  • (String)


2512
2513
2514
2515
2516
2517
2518
2519
# File 'lib/aws-sdk-personalize/types.rb', line 2512

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