Module Values_1.FinalHyperParameterTuningJobObjectiveMetricSource

Shows the latest objective metric emitted by a training job that was launched by a hyperparameter tuning job. You define the objective metric in the HyperParameterTuningJobObjective parameter of HyperParameterTuningJobConfig.

Sourcetype nonrec t = {
  1. type_ : Values_0.HyperParameterTuningJobObjectiveType.t option;
    (*

    Select if you want to minimize or maximize the objective metric during hyperparameter tuning.

    *)
  2. metricName : Values_0.MetricName.t option;
    (*

    The name of the objective metric. For SageMaker built-in algorithms, metrics are defined per algorithm. See the metrics for XGBoost as an example. You can also use a custom algorithm for training and define your own metrics. For more information, see Define metrics and environment variables.

    *)
  3. value : Values_0.MetricValue.t option;
    (*

    The value of the objective metric.

    *)
}
Sourceval make : ?type_:??? -> ?metricName:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of Values_0.MetricValue.t | `String of Values_0.MetricName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t