Values.ModelSummarySourceProvides information about the specified machine learning model, including dataset and model names and ARNs, as well as status.
type nonrec t = {modelName : ModelName.t option;The name of the machine learning model.
*)modelArn : ModelArn.t option;The Amazon Resource Name (ARN) of the machine learning model.
*)datasetName : DatasetName.t option;The name of the dataset being used for the machine learning model.
*)datasetArn : DatasetArn.t option;The Amazon Resource Name (ARN) of the dataset used to create the model.
*)status : ModelStatus.t option;Indicates the status of the machine learning model.
*)createdAt : Timestamp.t option;The time at which the specific model was created.
*)activeModelVersion : ModelVersion.t option;The model version that the inference scheduler uses to run an inference execution.
*)activeModelVersionArn : ModelVersionArn.t option;The Amazon Resource Name (ARN) of the model version that is set as active. The active model version is the model version that the inference scheduler uses to run an inference execution.
*)latestScheduledRetrainingStatus : ModelVersionStatus.t option;Indicates the status of the most recent scheduled retraining run.
*)latestScheduledRetrainingModelVersion : ModelVersion.t option;Indicates the most recent model version that was generated by retraining.
*)latestScheduledRetrainingStartTime : Timestamp.t option;Indicates the start time of the most recent scheduled retraining run.
*)nextScheduledRetrainingStartDate : Timestamp.t option;Indicates the date that the next scheduled retraining run will start on. Lookout for Equipment truncates the time you provide to the nearest UTC day.
*)retrainingSchedulerStatus : RetrainingSchedulerStatus.t option;Indicates the status of the retraining scheduler.
*)modelDiagnosticsOutputConfiguration : ModelDiagnosticsOutputConfiguration.t
option;modelQuality : ModelQuality.t option;Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is POOR_QUALITY_DETECTED. Otherwise, the value is QUALITY_THRESHOLD_MET. If the model is unlabeled, the model quality can't be assessed and the value of ModelQuality is CANNOT_DETERMINE_QUALITY. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model. For information about using labels with your models, see Understanding labeling. For information about improving the quality of a model, see Best practices with Amazon Lookout for Equipment.
*)}val make :
?modelName:??? ->
?modelArn:??? ->
?datasetName:??? ->
?datasetArn:??? ->
?status:??? ->
?createdAt:??? ->
?activeModelVersion:??? ->
?activeModelVersionArn:??? ->
?latestScheduledRetrainingStatus:??? ->
?latestScheduledRetrainingModelVersion:??? ->
?latestScheduledRetrainingStartTime:??? ->
?nextScheduledRetrainingStartDate:??? ->
?retrainingSchedulerStatus:??? ->
?modelDiagnosticsOutputConfiguration:??? ->
?modelQuality:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of ModelVersion.t
| `String of ModelName.t
| `Structure of
(string
* [> `String of NameOrArn.t
| `Structure of (string * [> `String of S3Bucket.t ]) list ])
list
| `Timestamp of Timestamp.t ])
list ]