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

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

Overview

The metric to optimize during hyperparameter optimization (HPO).

Amazon Personalize doesn't support configuring the hpoObjective at this time.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metric_nameString

The name of the metric.

Returns:

  • (String)


3517
3518
3519
3520
3521
3522
3523
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 3517

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)


3517
3518
3519
3520
3521
3522
3523
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 3517

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)


3517
3518
3519
3520
3521
3522
3523
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 3517

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