dataeval.core.LabelStatsResult¶
- class dataeval.core.LabelStatsResult¶
Type definition for label statistics output.
- label_counts_per_class¶
Mapping of class labels to their total occurrence count.
- Type:¶
Mapping[int, int]
- image_counts_per_class¶
Mapping of class labels to the number of images containing that class.
- Type:¶
Mapping[int, int]
- image_indices_per_class¶
Mapping of class labels to sequences of image indices containing that class.
- Type:¶
Mapping[int, Sequence[int]]
- classes_per_image¶
Sequence containing class labels for each image, indexed by image position. Images with no labels have empty sequences.
- Type:¶
Sequence[Sequence[int]]