The support-vector-machines tag has no wiki summary.
0
votes
1answer
22 views
Any support vector regression (SVR) library that gives me the regression model/equation used?
I'm looking for a support vector regression (SVR) library that gives me the regression model/equation that was used to calculate the predicted values. Do you know of any lib to give me a regression ...
0
votes
1answer
55 views
How can I get predicted values in SVM using MATLAB?
I am trying to get a prediction column matrix in MATLAB but I don't quite know how to go about coding it. My current code is -
load DataWorkspace.mat
groups = ismember(Num,'Yes');
k=10;
%# number ...
0
votes
1answer
91 views
scikit-learn preprocessing SVM with multiple classes in a pipeline
The literature on machine learning strongly suggests normalization of data for SVM (Preprocessing data in scikit-learn). And as answered before, same StandardScalar should be applied to both training ...
0
votes
1answer
92 views
Cross validation for polynomial kernel in LibSVM, using Python
I am using LibSVM with Python. Prior to building my classifier, I want to plot the average error of cross validation for different values of d and C to find the best (d, C) combination in terms of ...
0
votes
1answer
55 views
Documents classification using SVM
Which is the best SVM algorithm for a document classification project?
2
votes
3answers
69 views
number of support vectors libsvm
The prediction time depends on number of support vector, but I want to do prediction faster.
How can I set number of support vectors in libsvm to const value?
Maybe I can find N support vectors and ...
0
votes
1answer
50 views
Cryptic Error Message from Scikit Learn Svm Fit
I am attempting to train a support vector machine with scikit learn using these docs but I am getting an error message I do not understand. Am I doing something wrong?
Here is my script. The idea ...
3
votes
1answer
171 views
Time series prediction using support vector regression
I've been trying to implement time series prediction tool using support vector regression in python language. I use SVR module from scikit-learn for non-linear Support vector regression. But I have ...
0
votes
0answers
47 views
Estimating dependent variable as sum of functions of independent variables
I have a training data of 5 columns, where c1 is the dependent variable and columns c2, c3, c4, c5 are independent variables.
I want to estimate c1 as sum of functions of ci (where i = 2, 3, 4, 5) in ...
1
vote
1answer
88 views
Implementing Support Vector Machine - EFFICIENTLY computing gram-matrix K
I'm implementing SVM for mnist data in Python, for now I'm using cvxopt for solving QP and getting alphas back.
But my problem is computing K-gram matrix ** EFFICIENTLY **, I started with only two ...
0
votes
0answers
79 views
LIBLINEAR vs. LinearSVM from Orange
I used LinearSVM - which is a wrapper around LIBLINEAR - and noticed big differences between the results of the wrapper and the pure implementation? The difference is up to 10% higher for LinearSVM.
...
1
vote
2answers
62 views
How easy/fast are support vector machines to create/update?
If I provided you with data sufficient to classify a bunch of objects as either apples, oranges or bananas, how long might it take you to build an SVM that could make that classification? I appreciate ...
0
votes
2answers
164 views
Support Vector Machine distance from hyperplane and certainty
Does a vector's distance from the decision plane in a support vector machine (with arbitrary configuration with regards to kernel, etc.) correlate in any way to the machine's confidence/certainty of ...
4
votes
1answer
193 views
How to apply standardization to SVMs in scikit-learn?
I'm using the current stable version 0.13 of scikit-learn. I'm applying a linear support vector classifier to some data using the class sklearn.svm.LinearSVC.
In the chapter about preprocessing in ...
2
votes
1answer
133 views
How to understand the functional margin in SVM ?
I'm reading Andrew NG's Machine Learning notes, but the functional margin definition confused me :
I can understand to geometric margin is the distance from x to its hyperplane, but how to ...
0
votes
0answers
183 views
initial choice for cost, gamma, epsilon in Support Vector Machine regression?
I'm doing regression analysis using LIBSVM. I'm using epsilon-SVR with a radial basis function kernel.
I'm using LIBSVM's tools/gridregression.py to help optimize the [cost, gamma, epsilon] ...
0
votes
0answers
71 views
Support Vector Machine issue
I have a following model
svm_type c_svc
kernel_type rbf
gamma 0.0181818
nr_class 2
total_sv 6
rho -0.000658214
label 1 -1
nr_sv 3 3
SV
1 1:0.069767 2:0.040698 3:0.020349 5:0.043605 6:0.020349 ...
0
votes
0answers
125 views
WEKA SMOreg classifier significance testing
I am using the SMOreg classifier in WEKA to determine if there is a predictive relationship between one variable and several other variables. I am using 10-fold cross-validation to get my results. ...
1
vote
1answer
74 views
Good results with NN, not with SVM; cause for concern?
I have painstakingly gathered data for a proof-of-concept study I am performing. The data consists of 40 different subjects, each with 12 parameters measured at 60 time intervals and 1 output ...
-1
votes
1answer
158 views
how to get the margin from libSVM
I'm using the libSVM for .net.
After running the SVM training i get a vector of alphas.
As i understand, the margin is the minimum distance
between any point and the decision hyperplane.
I'm not sure ...
-1
votes
1answer
119 views
How can I tell what the default parameters are for CvSVMParams in opencv?
I'm pretty new to opencv and just getting used to C++ programming so this question might be pretty silly. What values are the the parameters in "struct CvSVMParams" initialized with if I leave them as ...
3
votes
1answer
293 views
libsvm - Cross validation accuracy same as the ratio of labels
I'm using the Python interface for libsvm, and what I'm noticing is that after selecting the best C and gamma parameters (RBF kernel) using grid search, when I train the model and cross validate it (5 ...
1
vote
1answer
99 views
Which of these data sets lends itself most to classification via support vector machine?
I need to get an SVM classifier of the ground. I don't have a lot of experience with SVM, so I was wondering, just by a cursory glance at these data sets ( http://archive.ics.uci.edu/ml/datasets.html ...
2
votes
1answer
57 views
Specific query regarding terminology used in relation to kernel function and support vector machines
I am currently reading the book "An Introduction to Support Vector Machines and Other Kernel Based Methods" by Nello Cristianini and I am unable to wrap my head around the concept of dual ...
3
votes
3answers
223 views
Can one conduct training an SVM with detected false positives iteratively?
I'm working on a machine learning problem in image processing. I want to get the location of an object in an image by using Histogram of Oriented Gradients (HOG) and a support vector machine (SVM). ...
2
votes
1answer
438 views
Lib svm, how to convert MyModel.mat to MyModel.model
I have a .mat file which could be easily read by matlab, but I need to convert it a C++ readable .model file. is there a way to do it (by hands, or maybe programmatically)?
1
vote
1answer
26 views
Query regarding textual classification data inherently residing in high dimensional space by default
I have read in a lot of support vector machine books and technical papers, an assumption that many of the authors make for choosing a linear kernel for most text classification task.
They say ...
2
votes
1answer
346 views
Why should we perform cosine normalization for SVM feature vectors?
I was recently playing around with the well known movie review dataset used in binary sentiment analysis. It consists of 1,000 positive and 1,000 negative reviews. While exploring various ...
2
votes
2answers
207 views
Essential philosophy behind Support Vector Machine
I am studying Support Vector Machine (SVM) by reading many materials. However, it seems that most of them focus on how to classify the input 2D data by mapping it using several kernels such as linear, ...
1
vote
2answers
652 views
Using LIBSVM grid.py for unbalanced data?
I'm having a three class problem with unbalanced data (90%, 5%, 5%). Now I want to train a classifier using LIBSVM.
The problem is that LIBSVM optimizes its parameter gamma and Cost for optimal ...
0
votes
0answers
141 views
How to use Bhattacharyya as a kernel function in Matlab's built in SVM?
I was wondering if there was a way to use the Bhattacharyya distance or kernel with SVM in Matlab?
I'm using the built-in SVM tool in Matlab and defining the Bhattacharyya as an external kernel ...
1
vote
0answers
275 views
I can't find good C ang gamma parameter for SVR in libsvm
Hi everybody I have difficulties using svr in libsvm.
I new to libsvm so I read libsvm guide and following all steps for finding best C and gamma parameter by using grid.py but the accuracy rate still ...
2
votes
2answers
141 views
libsvm returning a trivial solution
I'm trying to use libsvm to classify data as seen in the following picture:
You can see "by eye" there is a soft separation between blue and red, but some blue samples exists throughout the entire ...
0
votes
2answers
129 views
Query about kernel methods and kernel function in machine learning
I am very new to the field of machine learning and am basically teaching myself, I was reading a couple of papers related to Support Vector Machines as that is what I am planning to use in solving my ...
-3
votes
1answer
720 views
How do I run libsvm on linux?
I'm having trouble installing libsvm, presently im running via a ubuntu virtual machine . When I follow the instructions such that on Unix systems, "type make' to build thesvm-train' and ...
0
votes
1answer
51 views
NULL values across a dimension in Support Vector Machine
I am designing a support vector machine considering n dimensions. Along every dimension, the values could range from [0-1]. Now, if I am unable to determine the value across a particular dimension ...
0
votes
0answers
241 views
Calculating margin and bias for SVM's
I apologise for the newbishness of this question in advance but I am stuck. I am trying to solve this question,
I can do parts i)-1v) but I am stuck on v. I know to calculate the margin y, you do
...
1
vote
2answers
147 views
Query about SVM mapping of input vector? And SVM optimization equation
I have read through a lot of papers and understand the basic concept of a support vector machine at a very high level. You give it a training input vector which has a set of features and bases on how ...
2
votes
1answer
275 views
relation between support vectors and accuracy in case of RBF kernel
I am using RBF kernel matlab function.
On couple of dataset as I go on increasing sigma value the number of support vectors increase and accuracy increases.
While in case of one data set, as I ...
2
votes
2answers
2k views
Support Vector Machine library for C#
Is there any Support Vector Machine library already implemented which I could use in my C# projects?
0
votes
0answers
212 views
SVM Grid search always gives same accuracy
I'm using libSVM to train a binary classifier on 38 training instances consisting of ~250 features.
Before training I scale the data to [0,1] and perform a grid search to find the best parameters. ...
2
votes
2answers
932 views
Build a custom svm kernel matrix with opencv
I have to train a Support Vector Machine model and I'd like to use a custom kernel matrix, instead of the preset ones (like RBF, Poly, ecc.).
How can I do that (if is it possible) with opencv's ...
4
votes
2answers
983 views
Which of the parameters in LibSVM is the slack variable?
I am a bit confused about the namings in the SVM. I am using this library LibSVM. There are so many parameters that can be set. Does anyone know which of these is the slack variable?
thx
-1
votes
1answer
4k views
Multi-class classification in libsvm [closed]
I'm working with libsvm and I must implement the classification for multiclasses with one versus all.
How can I do it?
Does libsvm version 2011 use this?
I think that my question is not very ...
6
votes
3answers
5k 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
1answer
204 views
Is order of features in LibSVM feature vectors important?
I am considering using LibSVM and I am creating the required feature vectors.
In almost all the example data there is an order for the features for example:
+1 1:3 2:1 3:5 4:2 10:8
Was wondering if ...
0
votes
1answer
405 views
Emgu SVM classifier, predicts incorrect with poly and RBF kernels
I used EmguCV in C# for a face recognition project, but I found Emgu's support vector machine (SVM) predicts wrong classes when I use poly and RBF (redial basis function) kernels.
I compared Emgu's ...
0
votes
2answers
109 views
Support Vector Machines: Any sense using 2 opposite sign features?
I'm training a support-vector machine (SVM). Each training vector includes 2 features which are equal in magnitude and have opposite signs, i.e., F1 = -F2.
Is there any sense in doing so?
Is one of ...
2
votes
2answers
213 views
Can SVM solution change after shuffling the inputs?
When training a support vector machine (SVM) for classification with exactly the same data I obtain different results based on the order of the inputs, ie. if I shuffle the data I get different SVMs.
...
0
votes
1answer
2k views
SVM (Support Vector Machine) opencv
I'm new to machine learning. I'm doing a project by using opencv open source library. My issue is that I don't have experience in Machine Learning. I have extracted features from different images and ...

