-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🧰 Add CPS for probabilistic regressors
- Loading branch information
Showing
4 changed files
with
688 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,6 @@ __pycache__ | |
.mypy_cache | ||
.DS_Store | ||
.vscode/ | ||
.pytest_cache/ | ||
.pytest_cache/ | ||
|
||
crepes_weighted.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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)", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__, | ||
) |
Oops, something went wrong.