File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 8
8
* Fix double inference when using `predict_set ` function in split conformal classification
9
9
* Add FAQ entry in the documentation about ongoing works to extend MAPIE for LLM control
10
10
* MAPIE now supports Python versions up to the latest release (currently 3.13)
11
+ * Change `prefit ` default value to `True ` in split methods' docstrings to remain consistent with the implementation
11
12
12
13
1.0.1 (2025-05-22)
13
14
------------------
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ class SplitConformalClassifier:
79
79
80
80
See :ref:`theoretical_description_classification`.
81
81
82
- prefit : bool, default=False
82
+ prefit : bool, default=True
83
83
If True, the base classifier must be fitted, and the ``fit``
84
84
method must be skipped.
85
85
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ class SplitConformalRegressor:
72
72
be provided.
73
73
74
74
See :ref:`theoretical_description_conformity_scores`.
75
- prefit : bool, default=False
75
+ prefit : bool, default=True
76
76
If True, the base regressor must be fitted, and the ``fit``
77
77
method must be skipped.
78
78
You can’t perform that action at this time.
0 commit comments