Theoretical Description¶
Three methods for multi-class uncertainty quantification have been implemented in MAPIE so far : LAC (that stands for Least Ambiguous set-valued Classifier) [1], Adaptive Prediction Sets [2, 3] and Top-K [3]. The difference between these methods is the way the conformity scores are computed. The figure below illustrates the three methods implemented in MAPIE:
For a classification problem in a standard independent and identically distributed (i.i.d) case, our training data has an unknown distribution .
For any risk level between 0 and 1, the methods implemented in MAPIE allow the user to construct a prediction set for a new observation with a guarantee on the marginal coverage such that :
In words, for a typical risk level of , we want to construct prediction sets that contain the true observations for at least of the new test data points. Note that the guarantee is possible only on the marginal coverage, and not on the conditional coverage which depends on the location of the new test point in the distribution.
1. LAC¶
In the LAC method, the conformity score is defined as one minus the score of the true label. For each point of the calibration set :
Once the conformity scores are estimated for all calibration points, we compute the quantile as follows :
Finally, we construct a prediction set by including all labels with a score higher than the estimated quantile :
This simple approach allows us to construct prediction sets that have a theoretical guarantee on the marginal coverage. However, although this method generally results in small prediction sets, it tends to produce empty ones when the model is uncertain, for example at the border between two classes.
2. Top-K¶
Introduced in [3], the specificity of the Top-K method is that it will give the same prediction set size for all observations. The conformity score is the rank of the true label, with scores ranked from higher to lower. The prediction sets are built by taking the higher scores. The procedure is described in the following equations :
As the other methods, this procedure allows the user to build prediction sets with guarantee on the marginal coverage.
3. Adaptive Prediction Sets (APS)¶
The so-called Adaptive Prediction Set (APS) method overcomes the problem encountered by the LAC method through the construction of prediction sets which are by definition non-empty. The conformity scores are computed by summing the ranked scores of each label, from the higher to the lower until reaching the true label of the observation :
The quantile is then computed the same way as the LAC method. For the construction of the prediction sets for a new test point, the same procedure of ranked summing is applied until reaching the quantile, as described in the following equation :
By default, the label whose cumulative score is above the quantile is included in the prediction set. However, its incorporation can also be chosen randomly based on the difference between its cumulative score and the quantile so the effective coverage remains close to the target (marginal) coverage. We refer the reader to [2, 3] for more details about this aspect.
4. Regularized Adaptive Prediction Sets (RAPS)¶
The RAPS method which stands for Regularized Adaptive Prediction Sets, is an improvement made by Angelopoulos et al. in [3]. This regularization is able to overcome the very large prediction sets given by the APS method. The conformity scores are computed by summing the regularized ranked scores of each label, from the higher to the lower until reaching the true label of the observation :
Where:
the is the label associated to the ranked score.
denotes the positive part of
is the optimal set size (in the sense that if all prediction sets have elements, then one achieves the desired coverage)
is a regularization parameter whose calculation we will explain next.
The optimizations of and requires an extra data-splitting (by default, 20% of the calibration data). To choose , we simply run the Top-K method over this new split. For the choice of , we follow the guidelines of [3] and try to find the value of lambda such that it minimizes the size of the prediction sets. A simple grid search if done on different values of (to be consistent with Angelopoulos et al., we choose ).
For the construction of the prediction set for a new test point, the following procedure is applied:
Intuitively, the goal of the method is to penalize the prediction sets whose sizes are greater than the optimal prediction set size. The level of this regularization is controlled by the parameter .
Despite the RAPS method having a relatively small set size, its coverage tends to be higher than the one required (especially for high values of , which means a low level of confidence). Hence, to achieve exact coverage, one can implement a randomization concerning the inclusion of the last label in the prediction set. This randomization is done as follows:
First : define the parameter:
Compare each to Unif(0, 1)
If , the last included label is removed, else we keep the prediction set as it is.
5. Split- and cross-conformal methods¶
It should be noted that MAPIE includes split- and cross-conformal strategies for the LAC and APS methods, but only the split-conformal one for Top-K. The implementation of the cross-conformal method follows algorithm 2 of [2]. In short, conformity scores are calculated for all training instances in a cross-validation fashion from their corresponding out-of-fold models. By analogy with the CV+ method for regression, estimating the prediction sets is performed in four main steps:
We split the training set into K disjoint subsets of equal size.
K regression functions are fitted on the training set with the corresponding fold removed.
The corresponding out-of-fold conformity score is computed for each point
Compare the conformity scores of training instances with the scores of each label for each new test point in order to decide whether or not the label should be included in the prediction set. For the APS method, the prediction set is constructed as follows (see equation 11 of [3]) :
where :
is the conformity score of training instance
is the conformity score of label from a new test point.
References¶
[1] Mauricio Sadinle, Jing Lei, & Larry Wasserman. “Least Ambiguous Set-Valued Classifiers With Bounded Error Levels.” Journal of the American Statistical Association, 114:525, 223-234, 2019.
[2] Yaniv Romano, Matteo Sesia and Emmanuel J. Candès. “Classification with Valid and Adaptive Coverage.” NeurIPS 202 (spotlight), 2020.
[3] Anastasios Nikolas Angelopoulos, Stephen Bates, Michael Jordan and Jitendra Malik. “Uncertainty Sets for Image Classifiers using Conformal Prediction.” International Conference on Learning Representations 2021.