Class: Aws::Personalize::Types::HPOObjective
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::HPOObjective
- 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
-
#metric_name ⇒ String
The name of the metric.
-
#metric_regex ⇒ String
A regular expression for finding the metric in the training job logs.
-
#type ⇒ String
The type of the metric.
Instance Attribute Details
#metric_name ⇒ String
The name of the metric.
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_regex ⇒ String
A regular expression for finding the metric in the training job logs.
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 |
#type ⇒ String
The type of the metric. Valid values are ‘Maximize` and `Minimize`.
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 |