Module Values_1.LabelingJobStoppingConditionsSource

A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling. Labeling jobs fail after 30 days with an appropriate client error message.

Sourcetype nonrec t = {
  1. maxHumanLabeledObjectCount : MaxHumanLabeledObjectCount.t option;
    (*

    The maximum number of objects that can be labeled by human workers.

    *)
  2. maxPercentageOfInputDatasetLabeled : MaxPercentageOfInputDatasetLabeled.t option;
    (*

    The maximum number of input data objects that should be labeled.

    *)
}
Sourceval make : ?maxHumanLabeledObjectCount:??? -> ?maxPercentageOfInputDatasetLabeled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxHumanLabeledObjectCount.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