Class: Aws::Personalize::Types::HPOObjective

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-personalize/types.rb

Overview

The metric to optimize during hyperparameter optimization (HPO).

<note markdown=“1”> Amazon Personalize doesn’t support configuring the ‘hpoObjective` at this time.

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metric_nameString

The name of the metric.

Returns:

  • (String)


3746
3747
3748
3749
3750
3751
3752
# File 'lib/aws-sdk-personalize/types.rb', line 3746

class HPOObjective < Struct.new(
  :type,
  :metric_name,
  :metric_regex)
  SENSITIVE = []
  include Aws::Structure
end

#metric_regexString

A regular expression for finding the metric in the training job logs.

Returns:

  • (String)


3746
3747
3748
3749
3750
3751
3752
# File 'lib/aws-sdk-personalize/types.rb', line 3746

class HPOObjective < Struct.new(
  :type,
  :metric_name,
  :metric_regex)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of the metric. Valid values are ‘Maximize` and `Minimize`.

Returns:

  • (String)


3746
3747
3748
3749
3750
3751
3752
# File 'lib/aws-sdk-personalize/types.rb', line 3746

class HPOObjective < Struct.new(
  :type,
  :metric_name,
  :metric_regex)
  SENSITIVE = []
  include Aws::Structure
end