Module Values_2.ModelMetadataSummarySource

A summary of the model metadata.

Sourcetype nonrec t = {
  1. domain : Values_0.String_.t option;
    (*

    The machine learning domain of the model.

    *)
  2. framework : Values_0.String_.t option;
    (*

    The machine learning framework of the model.

    *)
  3. task : Values_0.String_.t option;
    (*

    The machine learning task of the model.

    *)
  4. model : Values_0.String_.t option;
    (*

    The name of the model.

    *)
  5. frameworkVersion : Values_0.String_.t option;
    (*

    The framework version of the model.

    *)
}
Sourceval make : ?domain:??? -> ?framework:??? -> ?task:??? -> ?model:??? -> ?frameworkVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.String_.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