Module Values.UpdateMLModelInputSource

Updates the MLModelName and the ScoreThreshold of an MLModel. You can use the GetMLModel operation to view the contents of the updated data element.

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

    The ID assigned to the MLModel during creation.

    *)
  2. mLModelName : EntityName.t option;
    (*

    A user-supplied name or description of the MLModel.

    *)
  3. scoreThreshold : ScoreThreshold.t option;
    (*

    The ScoreThreshold used in binary classification MLModel that marks the boundary between a positive prediction and a negative prediction. Output values greater than or equal to the ScoreThreshold receive a positive result from the MLModel, such as true. Output values less than the ScoreThreshold receive a negative response from the MLModel, such as false.

    *)
}
Sourceval context_ : string
Sourceval make : ?mLModelName:??? -> ?scoreThreshold:??? -> mLModelId:EntityId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of ScoreThreshold.t | `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