Skip to content

Commit

Permalink
🧰 Add CPS for probabilistic regressors
Browse files Browse the repository at this point in the history
  • Loading branch information
jejon committed Feb 18, 2025
1 parent 5e6fc3b commit 531e5d6
Show file tree
Hide file tree
Showing 4 changed files with 688 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ __pycache__
.mypy_cache
.DS_Store
.vscode/
.pytest_cache/
.pytest_cache/

crepes_weighted.egg-info
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="crepes_weighted",
version="0.1.2",
version="0.1.3",
author="Jef Jonkers",
author_email="[email protected]",
description="Weighted version of crepes: Conformal classifiers, regressors, and predictive systems (crepes)",
Expand Down
12 changes: 10 additions & 2 deletions src/crepes_weighted/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
from crepes_weighted.base import WrapRegressor, WrapClassifier, ConformalRegressor, ConformalPredictiveSystem, ConformalClassifier, ConformalPredictor, __version__

from crepes_weighted.base import (
ConformalClassifier,
ConformalPredictiveSystem,
ConformalPredictor,
ConformalRegressor,
WrapClassifier,
WrapProbabilisticRegressor,
WrapRegressor,
__version__,
)
Loading

0 comments on commit 531e5d6

Please sign in to comment.