Skip to content

Commit

Permalink
DOC: fix ConformalizedQuantileRegressor docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin-Laurent committed Jan 30, 2025
1 parent 196ff04 commit b06d5b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mapie_v1/regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -886,9 +886,9 @@ class ConformalizedQuantileRegressor:
to lower, upper, and median quantiles. These estimators should be
pre-trained with consistent quantile settings:
* ``lower quantile = 1 - confidence_level / 2``
* ``upper quantile = confidence_level / 2``
* ``median quantile = 0.5``
* `lower quantile = (1 - confidence_level) / 2`
* `upper quantile = (1 + confidence_level) / 2`
* `median quantile = 0.5`
confidence_level : float default=0.9
The confidence level for the prediction intervals, indicating the
Expand Down

0 comments on commit b06d5b1

Please sign in to comment.