Tagged 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.

learn more… | top users | synonyms

19
votes
5answers
1k views

Which machine learning library to use

I am looking for a library that, ideally, has the following features: implements hierarchical clustering of multidimensional data (ideally on similiarity or distance matrix) implements support ...
14
votes
7answers
4k views

Pointers to some good SVM Tutorial

I have been trying to grasp the basics of Support Vector Machines, and downloaded and read many online articles. But still am not able to grasp it. I would like to know, if there are some nice ...
9
votes
1answer
891 views

SVM - hard or soft margins?

Given a linearly separable dataset, is it necessarily better to use a a hard margin SVM over a soft-margin SVM?
7
votes
2answers
284 views

Help--100% accuracy with LibSVM?

Nominally a good problem to have, but I'm pretty sure it is because something funny is going on... As context, I'm working on a problem in the facial expression/recognition space, so getting 100% ...
7
votes
3answers
1k views

A few implementation details for a Support-Vector Machine (SVM)

In a particular application I was in need of machine learning (I know the things I studied in my undergraduate course). I used Support Vector Machines and got the problem solved. Its working fine. ...
6
votes
1answer
331 views

Support Vector Machines — Better than Artificial Neural Networks in which learning situations?

I know SVMs are supposedly 'ANN killers' in that they automatically select representation complexity and find a global optimum (see here for some SVM praising quotes). But here is where I'm unclear ...
6
votes
4answers
1k views

High volume SVM (machine learning) system

I working on a possible machine learning project that would be expected to do high speed computations for machine learning using SVM (support vector machines) and possibly some ANN. I'm resonably ...
6
votes
3answers
975 views

Implementing a linear, binary SVM (support vector machine)

I want to implement a simple SVM classifier, in the case of high-dimensional binary data (text), for which I think a simple linear SVM is best. The reason for implementing it myself is basically that ...
6
votes
2answers
3k views

How do I plot a classification graph of a SVM in R

I have an SVM in R and I would now like to plot the classification space for this machine. I have found some examples on the Internet, but I can't seem to make sense of them. My R script is as ...
5
votes
1answer
683 views

Need help on CvSVM

I couldnt find proper references about how to pass the SVM parameters to the opencv cvSvm class. I got the parameter list, but not any tutorial on how to convert the parameters to the CV data ...
5
votes
5answers
798 views

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 in particular) over some high dimensional input, and the results I get are not quite ...
5
votes
4answers
1k views

Know any good c++ support vector machine (SVM) libraries?

Do you know of any good c++ svm libraries out there ? I tried libsvm (http://www.csie.ntu.edu.tw/~cjlin/libsvm/) but so far I'm not flabbergasted. I have also heard of SVMLight and TinySVM. Have you ...
5
votes
4answers
6k views

Best MATLAB toolbox that implements Support Vector Regression? [closed]

In this Wikipedia article about SVM there are a number of links to different implementations of MATLAB toolboxes for Support Vector Machines. Could anyone suggest which of these is best in terms of ...
4
votes
1answer
161 views

How to extract info from scikits.learn classifier to then use in C code

I have trained a bunch of RBF SVMs using scikits.learn in Python and then Pickled the results. These are for image processing tasks and one thing I want to do for testing is run each classifier on ...
4
votes
1answer
336 views

SVM equations from e1071 R package?

I am interested in test the SVM performance to classify several individuals into four groups/classes. When using the svmtrain LibSVM function from MATLAB, I am able to get the three equations used to ...
4
votes
3answers
286 views

Datasets to test Nonlinear SVM

I'm implementing a nonlinear SVM and I want to test my implementation on a simple not linearly separable data. Google didn't help me find what I want. Can you please advise me where I can find such ...
4
votes
5answers
314 views

Machine learning, best technique

I am new to machine learning. I am familiar with SVM , Neural networks and GA. I'd like to know the best technique to learn for classifying pictures and audio. SVM does a decent job but takes a lot of ...
4
votes
1answer
355 views

Resolving a 'model empty' error in cross-validation for SVM classification when using the CMA Bioconductor package for R

I am using the Bioconductor package CMA to perform internal, Monte Carlo cross-validation (MCCV) on SVM classifiers in a microarray dataset. CMA internally uses the e1071 R package for the SVM work. ...
4
votes
6answers
553 views

Help me understand linear separability in a binary SVM

I'm cross-posting this from math.stackexchange.com because I'm not getting any feedback and it's a time-sensitive question for me. My question pertains to linear separability with hyperplanes in a ...
4
votes
3answers
164 views

Making predictions from a CV

I have a database with many CVs, including structured data of the gender, age, address, number of years of education, and many other parameters of each person. For about 10% of the sample, I also ...
4
votes
1answer
2k views

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 data. there is just one example in the MATLAB documentation but it is not with 10-fold. Can ...
4
votes
1answer
613 views

Optimizing SMO with RBFKernel (C and gamma)

There are two parameters while using RBF kernels with Support Vector Machines: C and γ. It is not known beforehand which C and γ are the best for one problem; consequently some kind of model selection ...
4
votes
4answers
2k views

Any python Support Vector Machine library around that allows online learning?

I do know there are some libraries that allow to use Support vector Machines from python code, but I am looking specifically for libraries that allow one to teach it online (this is, without having to ...
3
votes
1answer
86 views

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 separable problems, NN uses adding hidden layers and SVM uses changing space dimensions?
3
votes
2answers
54 views

Accuracy of LibSVM decreases

After getting my testlabel and trainlabel, i implemented SVM on libsvm and i got an accuracy of 97.4359%. ( c= 1 and g = 0.00375) model = svmtrain(TrainLabel, TrainVec, '-c 1 -g 0.00375'); ...
3
votes
1answer
67 views

Which is a better method? libsvm or svmclassify?

I have been recently trying to use svm for feature classification. While i was doing so, a question came to my mind. Which would be a better method to use? libsvm or svmclassify? what i mean by ...
3
votes
2answers
126 views

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: data <- loadNumerical() model <- svm(data[,-ncol(data)], data[,ncol(data)], gamma=10) ...
3
votes
1answer
114 views

One-Class Support Vector Machines

So I want to make sure I have this right. First, I'm an undergrad computer engineering major with much more hardware/EE experience than software. This summer I have found myself using a clustering ...
3
votes
2answers
203 views

svm for binary data with hamming distance

I have a standard {-1,+1} machine learning problem. The main difference is that the data points are binary strings, so their prooximity is measured by Hamming distance. Can SVM be applied in this ...
3
votes
1answer
148 views

help organizing my data for this machine learning problem

I want to categorize tweets within a given set of categories like {'sports', 'entertainment', 'love'}, etc... My idea is to take the term frequencies of the most commonly used words to help me solve ...
3
votes
2answers
756 views

R: predict.svm does not predict new data

unfortunately I have problems using predict() in the following simple example: library(e1071) x <- c(1:10) y <- c(0,0,0,0,1,0,1,1,1,1) test <- c(11:15) mod <- svm(y ~ x, kernel = ...
3
votes
4answers
277 views

machine learning - svm feature fusion techique

for my final thesis i am trying to build up an 3d face recognition system by combining color and depth information. the first step i did, is to realign the data-head to an given model-head using the ...
3
votes
1answer
517 views

Can an SVM learn incrementally?

I am using a multi-dimensional SVM classifier (SVM.NET, a wrapper for libSVM) to classify a set of features. Given an SVM model, is it possible to incorporate new training data without having to ...
3
votes
2answers
451 views

Calculating Nearest Match to Mean/Stddev Pair With LibSVM

I'm new to SVMs, and I'm trying to use the Python interface to libsvm to classify a sample containing a mean and stddev. However, I'm getting nonsensical results. Is this task inappropriate for SVMs ...
3
votes
3answers
1k views

SVM Classification - minimum number of input sets for each class

Im trying to build an app to detect images which are advertisements from the webpages. Once I detect those Ill not be allowing those to be displayed on the client side. From the help that I got here ...
3
votes
1answer
319 views

How do I get ruby-svm to look for libraries in macports' /opt/local?

I want to install Ruby SVM. I already have macports with normal settings, and installed libsvm via port just fine. But when I go to compile rubysvm, it barfs. :( Ruby SVM: ...
3
votes
2answers
805 views

Weights from linear SVM model (in R)?

Using kernlab I've trained a model with code like the following: my.model <- ksvm(result ~ f1+f2+f3, data=gold, kernel="vanilladot") Since it's a linear model, I prefer at run-time to compute ...
2
votes
1answer
96 views

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 it a bit to perform one-against-all classification. I have tried to perform ...
2
votes
0answers
47 views

C parameter does not affect accuracy in libsvm

I am facing a weird situation while using libsvm and in particular its C# implementation svm.net. I perform a grid search in order to detect the best value for parameter C (I am using a linear ...
2
votes
2answers
69 views

SVM Vector-Distance Kernel: Valid? Experience?

B"H I'm considering using the following simple function as an SVM kernel. It basically computes the distance between the 2 input vectors (norm): K(X1, X2) = || X1 - X2 ||, where X1 and X2 are ...
2
votes
1answer
312 views

using precomputed kernels with libsvm

I'm currently working on classifying images with different image-descriptors. Since they have their own metrics, I am using precomputed kernels. So given these NxN kernel-matrices (for a total of N ...
2
votes
1answer
388 views

Feeding HOG into SVM: the HOG has 9 bins, but the SVM takes in a 1D matrix

In OpenCV, there is a CvSVM class which takes in a matrix of samples to train the SVM. The matrix is 2D, with the samples in the rows. I created my own method to generate a histogram of oriented ...
2
votes
1answer
49 views

Is there any publications about how to use association rules as SVM feature?

I'd like to do SVM classification with association rules as features(to detect malwares), is it possible? or is there some publications on this topic?
2
votes
1answer
323 views

How to use reuters-21578 dataset with svm.net for text classification?

I've just started an application for text classification and I've read lots of papers about this topic, but till now I don't know how to start, I feel like I've not got the whole image. I've got the ...
2
votes
1answer
579 views

Support Vector Machine / K-nearest-neighbor code samples

I am trying to code up either a SVM or a KNN program to classify text documents. I grasp the concepts of both, but I would love to see some nice code examples that specifically demonstrate how to ...
2
votes
3answers
290 views

SVM - All my training data is getting selected as support Vectors :-(, why?

I am trying to use SVM for News article classification. I created a table that contains the features(unique words found in the documents) as rows. I created weight vectors mapping with these ...
2
votes
2answers
1k views

support vector machines in matlab

Could you give an example of classification of 4 classes using Support Vector Machines (SVM) in matlab something like: atribute_1 atribute_2 atribute_3 atribute_4 class 1 2 3 ...
2
votes
2answers
918 views

Need an SVM implementation or a JAVA library

I have a data set with 2400 samples and 10,000 features. All the data is binary (+1 or -1). I need to run it past an SVM algorithm so I could compare my algorithm to it. However, I know not much about ...
2
votes
1answer
986 views

How to compute the probability of a multi-class prediction using libsvm?

I'm using libsvm and the documentation leads me to believe that there's a way to output the believed probability of an output classification's accuracy. Is this so? And if so, can anyone provide a ...
2
votes
3answers
825 views

SVM Visualization in MATLAB

How do I visualize the SVM classification once I perform SVM training in Matlab?

1 2 3 4