Module Values_1.LabelCountersSource

Provides a breakdown of the number of objects labeled.

Sourcetype nonrec t = {
  1. totalLabeled : LabelCounter.t option;
    (*

    The total number of objects labeled.

    *)
  2. humanLabeled : LabelCounter.t option;
    (*

    The total number of objects labeled by a human worker.

    *)
  3. machineLabeled : LabelCounter.t option;
    (*

    The total number of objects labeled by automated data labeling.

    *)
  4. failedNonRetryableError : LabelCounter.t option;
    (*

    The total number of objects that could not be labeled due to an error.

    *)
  5. unlabeled : LabelCounter.t option;
    (*

    The total number of objects not yet labeled.

    *)
}
Sourceval make : ?totalLabeled:??? -> ?humanLabeled:??? -> ?machineLabeled:??? -> ?failedNonRetryableError:??? -> ?unlabeled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of LabelCounter.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