Module Values.ModelVersionSummarySource

Contains information about the specific model version.

Sourcetype nonrec t = {
  1. modelName : ModelName.t option;
    (*

    The name of the model that this model version is a version of.

    *)
  2. modelArn : ModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the model that this model version is a version of.

    *)
  3. modelVersion : ModelVersion.t option;
    (*

    The version of the model.

    *)
  4. modelVersionArn : ModelVersionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the model version.

    *)
  5. createdAt : Timestamp.t option;
    (*

    The time when this model version was created.

    *)
  6. status : ModelVersionStatus.t option;
    (*

    The current status of the model version.

    *)
  7. sourceType : ModelVersionSourceType.t option;
    (*

    Indicates how this model version was generated.

    *)
  8. 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.

    *)
}
Sourceval make : ?modelName:??? -> ?modelArn:??? -> ?modelVersion:??? -> ?modelVersionArn:??? -> ?createdAt:??? -> ?status:??? -> ?sourceType:??? -> ?modelQuality:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of ModelVersion.t | `String of ModelName.t | `Timestamp of Timestamp.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