-
-
Notifications
You must be signed in to change notification settings - Fork 554
Commit
…AM (resolve partially issue #1468).
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,7 +161,7 @@ def __init__( | |
|
||
@staticmethod | ||
def _distance(point_a, point_b): | ||
return math.sqrt(utils.math.minkowski_distance(point_a, point_b, 2)) | ||
return utils.math.minkowski_distance(point_a, point_b, 2) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
hoanganhngo610
Author
Contributor
|
||
|
||
def _find_fixed_radius_nn(self, x): | ||
fixed_radius_nn = {} | ||
|
Hey @hoanganhngo610. I understand the change, but it seems to have broken some unit tests. Could you take a look? :)