We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xorbits._mars.learn.neighbors.NearestNeighbors
from xorbits._mars.learn.neighbors import NearestNeighbors import numpy as np X = np.array([[0, 1], [1, 0], [1, 1], [0, 0]]) nbrs = NearestNeighbors(n_neighbors=2, algorithm='ball_tree').fit(X)
Output:
TypeError: argument of type 'builtin_function_or_method' is not iterable
And run
pytest xorbits/_mars/learn/neighbors/tests/test_nearest_neighbors.py
all tests failed
The text was updated successfully, but these errors were encountered:
xorbits.sklearn
No branches or pull requests
Describe the bug
Output:
And run
all tests failed
The text was updated successfully, but these errors were encountered: