Top "Svm" questions

Support vector machines (SVMs) are a set of related supervised learning methods that analyze data and recognize patterns, used for classification and regression analysis.

Determining the most contributing features for SVM classifier in sklearn

I have a dataset and I want to train my model on that data. After training, I need to know …

python machine-learning scikit-learn svm
How to Setup LIBSVM for Python

I built libsvm on Mac OS X with Make. $ tar xzfv libsvm-3.17.tar.gz $ cd libsvm-3.17 $ make This built the …

python svm libsvm
Multi-class classification in libsvm

I'm working with libsvm and I must implement the classification for multiclasses with one versus all. How can I do …

matlab machine-learning classification libsvm svm
How to use libsvm in Matlab?

I am new to matlab and don't know how to use libsvm. Is there any sample code for classifying some …

matlab kernel machine-learning svm libsvm
How to run libsvm in MATLAB?

How to get started with libsvm under MATLAB? I've downloaded the library, and extracted it in C:\Program Files\MATLAB\…

matlab svm libsvm
Converting LinearSVC's decision function to probabilities (Scikit learn python )

I use linear SVM from scikit learn (LinearSVC) for binary classification problem. I understand that LinearSVC can give me the …

python machine-learning scikit-learn svm
How does sklearn.svm.svc's function predict_proba() work internally?

I am using sklearn.svm.svc from scikit-learn to do binary classification. I am using its predict_proba() function to …

python svm scikit-learn
How much time does take train SVM classifier?

I wrote following code and test it on small data: classif = OneVsRestClassifier(svm.SVC(kernel='rbf')) classif.fit(X, y) …

python numpy machine-learning svm
Prepare data for text classification using Scikit Learn SVM

I'm trying to apply SVM from Scikit learn to classify the tweets I collected. So, there will be two categories, …

python svm scikit-learn
Fastest SVM implementation usable in Python

I'm building some predictive models in Python and have been using scikits learn's SVM implementation. It's been really great, easy …

python machine-learning gpu svm scikit-learn