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

Popular posts from this blog

Capture and play voice with Asterisk ARI -

c++ - Can not find the "fiostream.h" file -

java - Why database contraints in HSQLDB are only checked during a commit when using transactions in Hibernate? -