Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ History
* Fix double inference when using `predict_set` function in split conformal classification
* Add FAQ entry in the documentation about ongoing works to extend MAPIE for LLM control
* MAPIE now supports Python versions up to the latest release (currently 3.13)
* Change `prefit` default value to `True` in split methods' docstrings to remain consistent with the implementation

1.0.1 (2025-05-22)
------------------
Expand Down
2 changes: 1 addition & 1 deletion mapie/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class SplitConformalClassifier:

See :ref:`theoretical_description_classification`.

prefit : bool, default=False
prefit : bool, default=True
If True, the base classifier must be fitted, and the ``fit``
method must be skipped.

Expand Down
2 changes: 1 addition & 1 deletion mapie/regression/regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class SplitConformalRegressor:
be provided.

See :ref:`theoretical_description_conformity_scores`.
prefit : bool, default=False
prefit : bool, default=True
If True, the base regressor must be fitted, and the ``fit``
method must be skipped.

Expand Down
Loading