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.

Does the SVM in sklearn support incremental (online) learning?

I am currently in the process of designing a recommender system for text articles (a binary case of 'interesting' or …

python machine-learning scikit-learn svm
Multi-Class SVM( one versus all)

I know that LIBSVM only allows one-vs-one classification when it comes to multi-class SVM. However, I would like to tweak …

matlab machine-learning libsvm svm
Why is scikit-learn SVM.SVC() extremely slow?

I tried to use SVM classifier to train a data with about 100k samples, but I found it to be …

python scikit-learn svm
How to Interpret Predict Result of SVM in R?

I'm new to R and I'm using the e1071 package for SVM classification in R. I used the following code: …

r classification svm
Feature Selection and Reduction for Text Classification

I am currently working on a project, a simple sentiment analyzer such that there will be 2 and 3 classes in separate …

python nlp svm sentiment-analysis feature-extraction
libsvm java implementation

I am trying to use the java bindings for libsvm: http://www.csie.ntu.edu.tw/~cjlin/libsvm/ I have …

java svm libsvm
How to approach machine learning problems with high dimensional input space?

How should I approach a situtation when I try to apply some ML algorithm (classification, to be more specific, SVM …

machine-learning classification svm
SVM and Neural Network

What is difference between SVM and Neural Network? Is it true that linear svm is same NN, and for non-linear …

artificial-intelligence machine-learning neural-network svm
10 fold cross-validation in one-against-all SVM (using LibSVM)

I want to do a 10-fold cross-validation in my one-against-all support vector machine classification in MATLAB. I tried to somehow …

matlab machine-learning classification svm libsvm
Python scikit-learn SVM Classifier "ValueError: Found array with dim 3. Expected <= 2"

I am trying to implement SVM Classifier over MNIST dataset. As my parameters are 3 dimensional its throwing the following error: …

python scikit-learn svm