前提・実現したいこと
Google Colaboratoryでpythonの機械学習の勉強をしています。
下記from~を実行するとエラーメッセージが出ました。解決法を教えてください。
発生している問題・エラーメッセージ
----> 1 from sklearn.neighbors import KNeighborsClassfier
2 clf=KNeighborsClassfier(n_neighbors=3)
ImportError: cannot import name 'KNeighborsClassfier' from 'sklearn.neighbors' (/usr/local/lib/python3.7/dist-packages/sklearn/neighbors/init.py)
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
"Open Examples" button below.
該当のソースコード
from sklearn.neighbors import KNeighborsClassfier
clf=KNeighborsClassfier(n_neighbors=3)
試したこと
!pip install scikit-learn
を入れてみましたがエラーが出ました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。