Module Values.PredictInputSource

Generates a prediction for the observation using the specified ML Model. Note: Not all response parameters will be populated. Whether a response parameter is populated depends on the type of model requested.

Sourcetype nonrec t = {
  1. mLModelId : EntityId.t;
    (*

    A unique identifier of the MLModel.

    *)
  2. record : Record.t;
  3. predictEndpoint : VipURL.t;
}
Sourceval context_ : string
Sourceval make : mLModelId:EntityId.t -> record:Record.t -> predictEndpoint:VipURL.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of VariableName.t ] * [> `String of VariableValue.t ]) list | `String of EntityId.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