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.

What are advantages of Artificial Neural Networks over Support Vector Machines?

ANN (Artificial Neural Networks) and SVM (Support Vector Machines) are two popular strategies for supervised machine learning and classification. It's …

machine-learning neural-network classification svm
How to do multi class classification using Support Vector Machines (SVM)

In every book and example always they show only binary classification (two classes) and new vector can belong to any …

machine-learning svm libsvm
Scikit Learn SVC decision_function and predict

I'm trying to understand the relationship between decision_function and predict, which are instance methods of SVC (http://scikit-learn.org/…

python numpy svm scikit-learn
What is the relation between the number of Support Vectors and training data and classifiers performance?

I am using LibSVM to classify some documents. The documents seem to be a bit difficult to classify as the …

machine-learning classification svm libsvm
using OpenCV and SVM with images

I am having difficulty with reading an image, extracting features for training, and testing on new images in OpenCV using …

c++ opencv svm
Making SVM run faster in python

Using the code below for svm in python: from sklearn import datasets from sklearn.multiclass import OneVsRestClassifier from sklearn.svm …

python scikit-learn svm
Getting an error "(subscript) logical subscript too long" while training SVM from e1071 package in R

I am training svm using my traindata. (e1071 package in R). Following is the information about my data. > str(…

r svm
Example of 10-fold SVM classification in MATLAB

I need a somehow descriptive example showing how to do a 10-fold SVM classification on a two class set of …

matlab machine-learning svm
ValueError: setting an array element with a sequence. while using SVM in scikit-learn

I have been working on scikit-learn SVMs for a binary classification problem. I have calculated the features of audio files …

arrays python-2.7 csv scikit-learn svm
An example using python bindings for SVM library, LIBSVM

I am in dire need of a classification task example using LibSVM in python. I don't know how the Input …

python machine-learning svm libsvm