Module Values.DatasetLabelStatsSource

Statistics about a label used in a dataset. For more information, see DatasetLabelDescription.

Sourcetype nonrec t = {
  1. entryCount : UInteger.t option;
    (*

    The total number of images that use the label.

    *)
  2. boundingBoxCount : UInteger.t option;
    (*

    The total number of images that have the label assigned to a bounding box.

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