@@ -20,15 +20,19 @@ Version 1.5.1
20
20
21
21
**TODO **
22
22
23
- Changelog
24
- ---------
25
-
26
23
Changes impacting many modules
27
24
------------------------------
28
25
26
+ - |Fix | Fixed a regression in the validation of the input data of all estimators where
27
+ an unexpected error was raised when passing a DataFrame backed by a read-only buffer.
28
+ :pr: `29018 ` by :user: `Jérémie du Boisberranger <jeremiedbb> `.
29
+
29
30
- |Fix | Fixed a regression causing a dead-lock at import time in some settings.
30
31
:pr: `29235 ` by :user: `Jérémie du Boisberranger <jeremiedbb> `.
31
32
33
+ Changelog
34
+ ---------
35
+
32
36
:mod: `sklearn.metrics `
33
37
......................
34
38
@@ -37,6 +41,10 @@ Changes impacting many modules
37
41
instead of implicitly converting those inputs as regular NumPy arrays.
38
42
:pr: `29119 ` by :user: `Olivier Grisel `.
39
43
44
+ - |Fix | Fix a regression in :func: `metrics.zero_one_loss ` causing an error
45
+ for Array API dispatch with multilabel inputs.
46
+ :pr: `29269 ` by :user: `Yaroslav Korobko <Tialo> `.
47
+
40
48
:mod: `sklearn.model_selection `
41
49
..............................
42
50
@@ -48,6 +56,14 @@ Changes impacting many modules
48
56
grids that have estimators as parameter values.
49
57
:pr: `29179 ` by :user: `Marco Gorelli<MarcoGorelli> `.
50
58
59
+ :mod: `sklearn.utils `
60
+ ....................
61
+
62
+ - |API | :func: `utils.validation.check_array ` has a new parameter, `force_writeable `, to
63
+ control the writeability of the output array. If set to `True `, the output array will
64
+ be guaranteed to be writeable and a copy will be made if the input array is read-only.
65
+ If set to `False `, no guarantee is made about the writeability of the output array.
66
+ :pr: `29018 ` by :user: `Jérémie du Boisberranger <jeremiedbb> `.
51
67
52
68
.. _changes_1_5 :
53
69
0 commit comments