Generating efficient conformal prediction regions with simple shapes.
Conformal Prediction is a popular method for uncertainty quantification, resulting in prediction regions around a predictor that contain the true output with high probability. The shape of these regions, determined by a non-conformity function, can significantly impact the performance of downstream tasks in robotics.
Our approach consists of four key steps:
To learn more, check out our paper!
Our library is available on PyPi and can be installed using the following command:
pip install conformal-region-designer
To use the library, we only need three lines of code, as shown below:
import conformal_region_designer as crd
pcr = crd.ConformalRegion('kde', 'meanshift', 'ellipse', 0.90)
pcr.fit(Z_cal_one)
pcr.conformalize(Z_cal_one)