Values.ModelVersionSummarySourceContains information about the specific model version.
type nonrec t = {modelName : ModelName.t option;The name of the model that this model version is a version of.
*)modelArn : ModelArn.t option;The Amazon Resource Name (ARN) of the model that this model version is a version of.
*)modelVersion : ModelVersion.t option;The version of the model.
*)modelVersionArn : ModelVersionArn.t option;The Amazon Resource Name (ARN) of the model version.
*)createdAt : Timestamp.t option;The time when this model version was created.
*)status : ModelVersionStatus.t option;The current status of the model version.
*)sourceType : ModelVersionSourceType.t option;Indicates how this model version was generated.
*)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 improving the quality of a model, see Best practices with Amazon Lookout for Equipment.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of ModelVersion.t
| `String of ModelName.t
| `Timestamp of Timestamp.t ])
list ]