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'
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'
You have wrong import, You should import KNeighborsClassifier
like this:
from sklearn.neighbors import KNeighborsClassifier