Values.UpdateMLModelInputSourceUpdates the MLModelName and the ScoreThreshold of an MLModel. You can use the GetMLModel operation to view the contents of the updated data element.
type nonrec t = {mLModelId : EntityId.t;The ID assigned to the MLModel during creation.
*)mLModelName : EntityName.t option;A user-supplied name or description of the MLModel.
*)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.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Float of ScoreThreshold.t | `String of EntityId.t ]) list ]