dataeval.metrics.stats.LabelStatsOutput ======================================= .. py:class:: dataeval.metrics.stats.LabelStatsOutput Output class for :func:`labelstats` stats metric .. attribute:: label_counts_per_class Dictionary whose keys are the different label classes and values are total counts of each class :type: dict[str | int, int] .. attribute:: label_counts_per_image Number of labels per image :type: list[int] .. attribute:: image_counts_per_label Dictionary whose keys are the different label classes and values are total counts of each image the class is present in :type: dict[str | int, int] .. attribute:: image_indices_per_label Dictionary whose keys are the different label classes and values are lists containing the images that have that label :type: dict[str | int, list] .. attribute:: image_count Total number of images present :type: int .. attribute:: class_count Total number of classes present :type: int .. attribute:: label_count Total number of labels present :type: int