Reputation: 175
I am beginner in machine learning and did find what's going wrong in this module
error...
from sklearn.neighbours import KNeighborsClassifier
ModuleNotFoundError: No module named 'sklearn.neighbours'
Upvotes: 3
Views: 4772
Reputation: 11073
You have wrong import, You should import KNeighborsClassifier
like this:
from sklearn.neighbors import KNeighborsClassifier
Upvotes: 4