10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64c1ff0 commit 54375d2Copy full SHA for 54375d2
sklearn/neighbors/_binary_tree.pxi
@@ -1323,11 +1323,11 @@ cdef class BinaryTree:
1323
i : if return_distance == False
1324
(d,i) : if return_distance == True
1325
1326
- d : ndarray of shape X.shape[:-1] + k, dtype=double
+ d : ndarray of shape X.shape[:-1] + (k,), dtype=double
1327
Each entry gives the list of distances to the neighbors of the
1328
corresponding point.
1329
1330
- i : ndarray of shape X.shape[:-1] + k, dtype=int
+ i : ndarray of shape X.shape[:-1] + (k,), dtype=int
1331
Each entry gives the list of indices of neighbors of the
1332
1333
"""
0 commit comments