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)


2521
2522
2523
2524
2525
2526
2527
2528
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2521

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)


2521
2522
2523
2524
2525
2526
2527
2528
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2521

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)


2521
2522
2523
2524
2525
2526
2527
2528
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2521

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

#nameString

The name of the hyperparameter.

Returns:

  • (String)


2521
2522
2523
2524
2525
2526
2527
2528
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 2521

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