HyperParameterTuningJobConfigObjective constructor

const HyperParameterTuningJobConfigObjective({
  1. required Input<String> metricName,
  2. required Input<String> type,
})

Creates a new HyperParameterTuningJobConfigObjective. metricName Metric name that tuning tries to optimize. type Optimization direction. Valid values include Minimize and Maximize.

Implementation

const HyperParameterTuningJobConfigObjective({
  required this.metricName,
  required this.type,
});