TrainingJobAlgorithmSpecificationMetricDefinition constructor

const TrainingJobAlgorithmSpecificationMetricDefinition({
  1. required Input<String> name,
  2. required Input<String> regex,
})

Creates a new TrainingJobAlgorithmSpecificationMetricDefinition. name Name of the metric. regex Regular expression that searches the output of the training job and captures the value of the metric.

Implementation

const TrainingJobAlgorithmSpecificationMetricDefinition({
  required this.name,
  required this.regex,
});