File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,15 @@ version 0.8:
168
168
LassoLARSCV, etc.) have been renamed to
169
169
``sklearn.linear_model.Lars() ``.
170
170
171
+ - All distance metrics and kernels in ``sklearn.metrics.pairwise `` now have a Y
172
+ parameter, which by default is None. If not given, the result is the distance
173
+ (or kernel similarity) between each sample in Y. If given, the pairwise
174
+ distance (or kernel similarity) between samples in X to Y are given.
175
+
176
+ - ``sklearn.metrics.pairwise.l1_distance `` is now called ``manhattan_distance ``,
177
+ and by default returns the pairwise distance. For the component wise distance,
178
+ set the parameter ``sum_over_features `` to ``False ``.
179
+
171
180
Backward compatibilty package aliases and other deprecated classes and
172
181
functions will be removed in version 0.11.
173
182
You can’t perform that action at this time.
0 commit comments