data_valuation#

Methods for quantifying the value of each data point in a Machine Learning dataset. Data Valuation helps us assess individual training data points’ contributions to a ML model’s predictive performance.

Functions:

data_shapley_knn(labels, *[, features, ...])

Compute the Data Shapley values of data points using a K-Nearest Neighbors (KNN) graph.

cleanlab.data_valuation.data_shapley_knn(labels, *, features=None, knn_graph=None, metric=None, k=10)[source]#

Compute the Data Shapley values of data points using a K-Nearest Neighbors (KNN) graph.

This function calculates the contribution (Data Shapley value) of each data point in a dataset for model training, either directly from data features or using a precomputed KNN graph.

The examples in the dataset with lowest data valuation scores contribute least to a trained ML model’s performance (those whose value falls below a threshold are flagged with this type of issue). The data valuation score is an approximate Data Shapley value, calculated based on the labels of the top k nearest neighbors of an example. Details on this KNN-Shapley value can be found in these papers: https://arxiv.org/abs/1908.08619 and https://arxiv.org/abs/1911.07128.

Parameters:
  • labels (ndarray) – An array of labels for the data points(only for multi-class classification datasets).

  • features (Optional[ndarray]) –

    Feature embeddings (vector representations) of every example in the dataset.

    Necessary if knn_graph is not supplied.

    If provided, this must be a 2D array with shape (num_examples, num_features).

  • knn_graph (Optional[csr_matrix]) – A precomputed sparse KNN graph. If not provided, it will be computed from the features using the specified metric.

  • metric (Optional[str], default None) – The distance metric for KNN graph construction. Supports metrics available in sklearn.neighbors.NearestNeighbors Default metric is "cosine" for dim(features) > 3, otherwise "euclidean" for lower-dimensional data.

  • k (int) – The number of neighbors to consider for the KNN graph and Data Shapley value computation. Must be less than the total number of data points. The value may not exceed the number of neighbors of each data point stored in the KNN graph.

Return type:

ndarray

Returns:

scores – An array of transformed Data Shapley values for each data point, calibrated to indicate their relative importance. These scores have been adjusted to fall within 0 to 1. Values closer to 1 indicate data points that are highly influential and positively contribute to a trained ML model’s performance. Conversely, scores below 0.5 indicate data points estimated to negatively impact model performance.

Raises:

ValueError – If neither knn_graph nor features are provided, or if k is larger than the number of examples in features.

Examples

>>> import numpy as np
>>> from cleanlab.data_valuation import data_shapley_knn
>>> labels = np.array([0, 1, 0, 1, 0])
>>> features = np.array([[0, 1, 2, 3, 4]]).T
>>> data_shapley_knn(labels=labels, features=features, k=4)
array([0.55 , 0.525, 0.55 , 0.525, 0.55 ])