You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR implements the transition from classification_coverage_score to classification_coverage_score_v2:
* Replace all instances of classification_coverage_score with classification_coverage_score_v2 in the codebase and associated tests;
* Remove the original classification_coverage_score function;
* Rename classification_coverage_score_v2 to classification_coverage_score;
* Update migration guide about this change.
Copy file name to clipboardExpand all lines: doc/v1_migration_guide.rst
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -209,6 +209,12 @@ Additionally, a number of classification and regression functions have been upda
209
209
- **v0.x**: Took the prediction sets in an array of shape (n_samples, n_class) for a given confidence level as input, and returned the effective mean width as a float.
210
210
- **v1**: Now takes the prediction sets in an array of shape (n_samples, n_class, n_confidence_level) as input, and returns the effective mean width for each confidence level as an array of shape (n_confidence_level,).
211
211
212
+
``classification_coverage_score``
213
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
214
+
215
+
- **v0.x**: Had two separate versions: ``classification_coverage_score`` and ``classification_coverage_v2``.
216
+
- **v1**: ``classification_coverage_score`` now corresponds to MAPIE v0.x's ``classification_coverage_score_v2``.
0 commit comments