dataset#

Provides dataset-level and class-level overviews of issues in your dataset. If your task allows you to modify the classes in your dataset, this module can help you determine which classes to remove (see rank_classes_by_label_quality) and which classes to merge (see find_overlapping_classes).

Functions:

find_overlapping_classes([labels, ...])

Returns the classes that are often confused by machine learning model or data labelers.

health_summary([labels, pred_probs, ...])

Prints a health summary of your datasets including results for useful statistics like:

overall_label_health_score([labels, ...])

Returns a single score/metric between 0 and 1 for the overall quality of all labels in a dataset.

rank_classes_by_label_quality([labels, ...])

Returns a Pandas DataFrame with all classes and three overall class label quality scores (details about each score are listed in the Returns parameter).

cleanlab.dataset.find_overlapping_classes(labels=None, pred_probs=None, *, asymmetric=False, class_names=None, num_examples=None, joint=None, confident_joint=None, multi_label=False)[source]#

Returns the classes that are often confused by machine learning model or data labelers. Consider merging the top pairs of classes returned by this method each into a single class. If the dataset is labeled by human annotators, consider clearly defining the difference between the classes prior to having annotators label the data.

This method provides two scores in the Pandas DataFrame that is returned:

  • Num Overlapping Examples: The number of examples where the two classes overlap

  • Joint Probability: (num overlapping examples / total number of examples in the dataset).

This method works by providing any one (and only one) of the following inputs:

  1. labels and pred_probs, or

  2. joint and num_examples, or

  3. confident_joint

Only provide exactly one of the above input options, do not provide a combination.

This method uses the joint distribution of noisy and true labels to compute ontological issues via the approach published in Northcutt et al., 2021.

Note

The joint distribution of noisy and true labels is asymmetric, and therefore the joint probability p(given="vehicle", true="truck") != p(true="truck", given="vehicle"). This is intuitive. Images of trucks (true label) are much more likely to be labeled as a car (given label) than images of cars (true label) being frequently mislabeled as truck (given label). cleanlab takes these differences into account for you automatically via the joint distribution. If you do not want this behavior, simply set asymmetric=False.

This method measures how often the annotators confuse two classes. This method differs from just using a similarity matrix or confusion matrix. Instead, it works even if the model that generated pred_probs in more confident in some classes than others and has heterogeneity in average confidence across classes.

Parameters
  • labels (np.array, optional) – An array of shape (N,) of noisy labels, i.e. some labels may be erroneous. Elements must be in the set 0, 1, …, K-1, where K is the number of classes.

  • pred_probs (np.array, optional) – An array of shape (N, K) of model-predicted probabilities, P(label=k|x). Each row of this matrix corresponds to an example x and contains the model-predicted probabilities that x belongs to each possible class, for each of the K classes. The columns must be ordered such that these probabilities correspond to class 0, 1, …, K-1. pred_probs should have been computed using 3 (or higher) fold cross-validation.

  • asymmetric (bool, optional) – If asymmetric=True, includes both pairs (class1, class2) and (class2, class1). Use this for finding “is a” relationships where for example “class1 is a class2”. If asymmetric=False, the pair (class1, class2) will only be returned once and order is arbitrary (internally this is just summing score(class1, class2) + score(class2, class1)).

  • class_names (Iterable[str]) – A list or other iterable of the string class names. The list should be in the order that matches the class indices. So if class 0 is ‘dog’ and class 1 is ‘cat’, then class_names = ['dog', 'cat'].

  • num_examples (int or None, optional) – The number of examples in the datasets, i.e. len(labels). You only need to provide this if you use this function with the joint, e.g. find_overlapping_classes(joint=joint), otherwise this is automatically computed via sum(confident_joint) or len(labels).

  • joint (np.array, optional) – An array of shape (K, K), where K is the number of classes, representing the estimated joint distribution of the noisy labels and true labels. The sum of all entries in this matrix must be 1 (valid probability distribution). Each entry in the matrix captures the co-occurence joint probability of a true label and a noisy label, i.e. p(noisy_label=i, true_label=j). Important. If you input the joint, you must also input num_examples.

  • confident_joint (np.array, optional) – An array of shape (K, K) representing the confident joint, the matrix used for identifying label issues, which estimates a confident subset of the joint distribution of the noisy and true labels, P_{noisy label, true label}. Entry (j, k) in the matrix is the number of examples confidently counted into the pair of (noisy label=j, true label=k) classes. The confident_joint can be computed using count.compute_confident_joint. If not provided, it is computed from the given (noisy) labels and pred_probs.

  • multi_label (bool, optional) – If True, labels should be an iterable (e.g. list) of iterables, containing a list of labels for each example, instead of just a single label. The multi-label setting supports classification tasks where an example has 1 or more labels. Example of a multi-labeled labels input: [[0,1], [1], [0,2], [0,1,2], [0], [1], ...].

Returns

A Pandas DataFrame with columns “Class Index A”, “Class Index B”, “Num Overlapping Examples”, “Joint Probability” and a description of each below. Each row corresponds to a pair of classes.

  • Class Index A: the index of a class in 0, 1, …, K-1.

  • Class Index B: the index of a different class (from Class A) in 0, 1, …, K-1.

  • Num Overlapping Examples: estimated number of labels overlapping between the two classes.

  • Joint Probability: the Num Overlapping Examples divided by the number of examples in the dataset.

By default, the DataFrame is ordered by “Joint Probability” descending.

Return type

pd.DataFrame

cleanlab.dataset.health_summary(labels=None, pred_probs=None, *, asymmetric=False, class_names=None, num_examples=None, joint=None, confident_joint=None, multi_label=False, verbose=True)[source]#

Prints a health summary of your datasets including results for useful statistics like:

  • The classes with the most and least label issues

  • Classes that overlap and could potentially be merged

  • Overall data label quality health score statistics for your dataset

This method works by providing any one (and only one) of the following inputs:

  1. labels and pred_probs, or

  2. joint and num_examples, or

  3. confident_joint

Only provide exactly one of the above input options, do not provide a combination.

Parameters: For parameter info, see the docstring of find_overlapping_classes.

Returns

A dictionary containing keys:

Return type

dict

cleanlab.dataset.overall_label_health_score(labels=None, pred_probs=None, *, num_examples=None, joint=None, confident_joint=None, multi_label=False, verbose=True)[source]#

Returns a single score/metric between 0 and 1 for the overall quality of all labels in a dataset. Intuitively, the score is the average correctness of the given labels across all classes in the dataset. So a score of 1 suggests your data is perfectly labeled and a score of 0.5 suggests that, on average across all classes, about half of the label may have issues. Thus, a higher score implies higher quality labels, with 1 implying labels that have no issues.

This method works by providing any one (and only one) of the following inputs:

  1. labels and pred_probs, or

  2. joint and num_examples, or

  3. confident_joint

Only provide exactly one of the above input options, do not provide a combination.

Parameters: For parameter info, see the docstring of find_overlapping_classes.

Returns

health_score – A score between 0 and 1 where 1 implies the dataset has all estimated perfect labels. A score of 0.5 implies that, on average, half of the dataset’s label have estimated issues.

Return type

float

cleanlab.dataset.rank_classes_by_label_quality(labels=None, pred_probs=None, *, class_names=None, num_examples=None, joint=None, confident_joint=None, multi_label=False)[source]#

Returns a Pandas DataFrame with all classes and three overall class label quality scores (details about each score are listed in the Returns parameter). By default, classes are ordered by “Label Quality Score”, ascending, so the most problematic classes are reported first.

Score values are unnormalized and may tend to be very small. What matters is their relative ranking across the classes.

This method works by providing any one (and only one) of the following inputs:

  1. labels and pred_probs, or

  2. joint and num_examples, or

  3. confident_joint

Only provide exactly one of the above input options, do not provide a combination.

Parameters: For parameter info, see the docstring of find_overlapping_classes.

Returns

A Pandas DataFrame with cols “Class Index”, “Label Issues”, “Inverse Label Issues”, “Label Issues”, “Inverse Label Noise”, “Label Quality Score”, with a description of each of these columns below. The length of the DataFrame is num_classes (one row per class). Noise scores are between 0 and 1, where 0 implies no label issues in the class. The “Label Quality Score” is also between 0 and 1 where 1 implies perfect quality. Columns:

  • Class Index: The index of the class in 0, 1, …, K-1.

  • Label Issues: count(given_label = k, true_label != k), estimated number of label issues in the class (usually the most accurate method).

  • Inverse Label Issues: count(given_label != k, true_label = k), estimated number of examples in the dataset that should actually be labeled as class k but have been given another label.

  • Label Noise: prob(true_label != k | given_label = k), estimated proportion of label issues in the class. This is computed by taking the number of examples with “Label Issues” in the given class and dividing it by the total number of examples in that class.

  • Inverse Label Noise: prob(given_label != k | true_label = k), estimated proportion of examples in the dataset that should actually be labeled as class k but have been given another label.

  • Label Quality Score: p(true_label = k | given_label = k). This is the proportion of examples in the class that are labeled correctly, i.e. 1 - label_noise.

By default, the DataFrame is ordered by “Label Quality Score”, ascending.

Return type

pd.DataFrame