Re: [Scikit-learn-general] Question about useage of svm

2011-12-14 Thread traveller3141
Thanks :) On Wed, Dec 14, 2011 at 10:09 PM, xinfan meng wrote: > > > http://scikit-learn.sourceforge.net/dev/modules/generated/sklearn.svm.SVC.html#sklearn.svm.SVC > > This should answer your question, I think. > On Thu, Dec 15, 2011 at 11:02 AM, traveller3141 > wrote: > >> I'm trying to use th

Re: [Scikit-learn-general] Question about useage of svm

2011-12-14 Thread xinfan meng
http://scikit-learn.sourceforge.net/dev/modules/generated/sklearn.svm.SVC.html#sklearn.svm.SVC This should answer your question, I think. On Thu, Dec 15, 2011 at 11:02 AM, traveller3141 wrote: > I'm trying to use the svm class with scikits, but am having trouble following > the documentation. In

[Scikit-learn-general] Question about useage of svm

2011-12-14 Thread traveller3141
I'm trying to use the svm class with scikits, but am having trouble following the documentation. In section 2.9.2.2.1, the following example is given for learning an SVM with a linear kernel for classifying Irises: >>> from scikits.learn import svm>>> svc = svm.SVC(kernel='linear')>>> >>> svc.f