dataeval.metrics.stats.LabelStatsOutput¶
- class dataeval.metrics.stats.LabelStatsOutput¶
Output class for
labelstats()stats metric.- label_counts_per_class¶
Dictionary whose keys are the different label classes and values are total counts of each class
- Type:¶
Mapping[int, int]
- image_counts_per_class¶
Dictionary whose keys are the different label classes and values are total counts of each image the class is present in
- Type:¶
Mapping[int, int]
- image_indices_per_class¶
Dictionary whose keys are the different label classes and values are lists containing the images that have that label
- Type:¶
Mapping[int, Sequence[int]]