File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
examples/release_highlights Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 93
93
# user specified validation sets. This feature is released early to collect feedback
94
94
# from third-party libraries who might benefit from it.
95
95
96
+ # %%
97
+ # Multiclass support for `LogisticRegression(solver="newton-cholesky")`
98
+ # ---------------------------------------------------------------------
99
+ #
100
+ # The `"newton-cholesky"` solver (originally introduced in scikit-learn version
101
+ # 1.2) was previously limited to binary
102
+ # :class:`~linear_model.LogisticRegression` and some other generalized linear
103
+ # regression estimators (namely :class:`~linear_model.PoissonRegressor`,
104
+ # :class:`~linear_model.GammaRegressor` and
105
+ # :class:`~linear_model.TweedieRegressor`).
106
+ #
107
+ # This new release includes support for multiclass (multinomial)
108
+ # :class:`~linear_model.LogisticRegression`.
109
+ #
110
+ # This solver is particularly useful when the number of features is small to
111
+ # medium. It has been empirically shown to converge more reliably and faster
112
+ # than other solvers on some medium sized datasets with one-hot encoded
113
+ # categorical features as can be seen in the `benchmark results of the
114
+ # pull-request
115
+ # <https://github.com/scikit-learn/scikit-learn/pull/28840#issuecomment-2065368727>`_.
116
+
96
117
# %%
97
118
# Missing value support for Extra Trees
98
119
# -------------------------------------
You can’t perform that action at this time.
0 commit comments