Values.MetricQuerySourceSpecifies a query to retrieve training metrics from SageMaker.
type nonrec t = {metricName : MetricName.t;The name of the metric to retrieve.
*)resourceArn : SageMakerResourceArn.t;The ARN of the SageMaker resource to retrieve metrics for.
*)metricStat : MetricStatistic.t;The metrics stat type of metrics to retrieve.
*)period : Period.t;The time period of metrics to retrieve.
*)xAxisType : XAxisType.t;The x-axis type of metrics to retrieve.
*)start : Long.t option;The start time of metrics to retrieve.
*)end_ : Long.t option;The end time of metrics to retrieve.
*)}val make :
?start:??? ->
?end_:??? ->
metricName:MetricName.t ->
resourceArn:SageMakerResourceArn.t ->
metricStat:MetricStatistic.t ->
period:Period.t ->
xAxisType:XAxisType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `Long of Long.t | `String of MetricName.t ])
list ]