Module Values.BatchPutMetricsRequestSource

Used to ingest training metrics into SageMaker. These metrics can be visualized in SageMaker Studio.

Sourcetype nonrec t = {
  1. trialComponentName : ExperimentEntityName.t;
    (*

    The name of the Trial Component to associate with the metrics. The Trial Component name must be entirely lowercase.

    *)
  2. metricData : RawMetricDataList.t;
    (*

    A list of raw metric values to put.

    *)
}
Sourceval context_ : string
Sourceval make : trialComponentName:ExperimentEntityName.t -> metricData:RawMetricDataList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `Integer of Step.t | `String of MetricName.t | `Timestamp of Timestamp.t ]) list ] list | `String of ExperimentEntityName.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