Module Values.DatasetStatsSource

Provides statistics about a dataset. For more information, see DescribeDataset.

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

    The total number of images in the dataset that have labels.

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

    The total number of images in the dataset.

    *)
  3. totalLabels : UInteger.t option;
    (*

    The total number of labels declared in the dataset.

    *)
  4. errorEntries : UInteger.t option;
    (*

    The total number of entries that contain at least one error.

    *)
}
Sourceval make : ?labeledEntries:??? -> ?totalEntries:??? -> ?totalLabels:??? -> ?errorEntries:??? -> 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