python - ImportError SciKit-learn -
i trying started machine learning, have installed packages: numpy, scikit-learn, matplotlib, scipy. have installed directly pip with:
python -m pip install "package name" and , others have downloaded binary files , installed pip. shows no errors when import matplotlib, numpy , sklearn, when write:
from sklearn import svm it gives me error:
importerror: cannot import name 'svm' i on python 3.5.1 , on windows 10. have solutions?
import sklearn.svm svm model = svm.svc() .... http://scikit-learn.org/stable/modules/classes.html#module-sklearn.svm
Comments
Post a Comment