Sandeep Agrawal
Sandeep Agrawal

Reputation: 175

ModuleNotFoundError: No module named 'sklearn.neighbours'

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

Answers (1)

Mehrdad Pedramfar
Mehrdad Pedramfar

Reputation: 11073

You have wrong import, You should import KNeighborsClassifier like this:

from sklearn.neighbors import KNeighborsClassifier

Upvotes: 4

Related Questions