Skip to content

Releases: deel-ai/puncc

Version 0.7.7

20 Mar 14:52
2c65579
Compare
Choose a tag to compare
  • Fixed negative sigma issue in LocallyAdaptiveCP. The exception "All MAD predictions should be positive." should not be raised anymore: the associated negative nonconformity scores are ignored during calibration and result in an infinite prediction interval during inference.
  • Added documentation for experimental PyTorchPredictor.

Version 0.7.6

12 Mar 09:50
3b9e4e5
Compare
Choose a tag to compare
  • Fixed incorrect pre-trained status check in DualPredictor (and MeanVarPredictor). Wrapped underlying models must have their is_trained status set to True to consider that DualPredictor (or MeanVarPredictor) is pre-trained.
  • Further tests for pre-trained status checks were added.
  • Changed pkgutil.find_loader with import lib.util.find_spec as find_loader is deprecated and will be removed in Python 3.14.

Version 0.7.5

02 Jan 14:02
Compare
Choose a tag to compare

Simplified API procedure for conformalizing pretrained underlying models: instantiating a ConformalPredictor object in this situation is performed with a splitter set to None.

v0.7.4: Builtin predictors (#44)

31 Dec 09:50
70700e2
Compare
Choose a tag to compare
* feat: enable conformal procedure without api predictor wrappers for models that natively implements fit and predict.