Tagged Questions
The support-vector-machines tag has no wiki summary.
9
votes
2answers
416 views
Designing a Kernel for a support vector machine (XOR)
The meat of my question is "how does one design a kernel function for a learning problem?"
As a quick background, I'm reading books on support vector machines and kernel machines, and everywhere I ...
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
2answers
548 views
Support vector machines - separating hyperplane question
From what I've seen, seems like the separation hyperplane must be in the form
x.w + b = 0.
I don't get very well this notation. From what I understand, x.w is a inner product, so it's result will ...
5
votes
1answer
210 views
support vector machines - a simple explanation?
So, i'm trying to understand how the SVM algorithm works but i just cannot figure out how you transform some datasets in points of n-dimensional plane that would have a mathematical meaning in order ...
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
4answers
279 views
Looking for libraries which implement sequential minimal optimization in C++
I want to use SMO (Sequential Minimal Optimization) in order to train an SVM (Support Vector Machine). Can anyone suggest existing C++ libraries which implement SMO?
I plan to use this to train an ...
2
votes
2answers
88 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.
...
2
votes
1answer
108 views
WEKA: issue with attribute scales
I've a training data sets and multiple test sets (I'm classifying instances in a clustering framework, so the instances of the test set are computed on fly).
The instances attributes have different ...
1
vote
1answer
179 views
Is there any need to scale data in SVM if my weight vector is binary in nature?
My weight vector is SVM training (using Libsvm) will have only feature number and then 1 or 0 i.e representing whether present or NOT present.
it would be like below libsvm format.
1 1:0 2:1 3:0 ...
1
vote
1answer
136 views
.NET SVM for regression
I'm looking for a Support Vector Machine library that I can use in my .NET projects. The two promising ones I've found so far are NPatternRecognizer, but it only supports classification (not ...
0
votes
0answers
11 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
24 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
67 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 ...
0
votes
1answer
348 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 ...
0
votes
0answers
73 views
I am integrating recommendation engines to google spreadsheets ,any pointers? [closed]
any question comments/suggestion to improve this question are welcome In such a way that data in n sheets is input for recommending the feed for n+1th sheet.
I am currently playing with google ...
0
votes
0answers
17 views
Database for structured output learning
I'm new at this so please be gentle.
I'm currently trying to apply some structured prediction algorithms using kernel methods. The thing I'm missing is a good database for which to test this on. ...
-6
votes
1answer
29 views
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 it?
Does libsvm version 2011 use this?
I think that my question is not very ...