LIBSVM is a library for Support Vector Machines
0
votes
1answer
13 views
What is cross validation rate in grid.py indicate?
I know what cross validation and what grid.py is does.
I know that parameter g and g are supposed to be used while training but I have no idea what is this third parameter rate?
I get ...
-1
votes
1answer
25 views
Crash after reading training data for libsvm
I have scaled my training data and tried to do cross validation to obtain the best parameters but I don't know how to do. I tried to read my scaled training data and assign them to an svm_problem ...
0
votes
1answer
20 views
train data using libsvm with best C and Gamma
Hi I'm using libsvm (in VS2010) for training my data , I scaled the input and output data successfully using svm-scale.c and my data is ready to be trained ...
Now I have two problems:
1).
as I've ...
1
vote
1answer
27 views
Using LIBSVM on Visual studio 2010
I wanted to use libsvm in visual studio 2010 just for classifying my test sample and nothing more ..
I've worked with libsvm using the documentation provided by its official site ...
So I used ...
2
votes
2answers
23 views
Training complexity of Linear SVM
Which is the actual computational complexity of the learning phase of SVM (let's say, that implemented in LibSVM)?
Thank you
1
vote
1answer
12 views
Weka Gridsearch libsvm cannot handle unary class (one-class)
I'm trying to obtain the best parameters for a one-class classifer using the wrapper of LibSVM under Weka.
For this reason, I'm going to weka.classifiers.meta.GridSearch and then I select LibSVM one ...
0
votes
0answers
11 views
How to deallocate memory in LibSVM/LIBLINEAR?
How to properly deallocate memory used by a model in LibSVM/LIBLINEAR? Is it sufficient to call free_and_destroy_model, or destroy_param should be called first? And what is the purpose of ...
0
votes
1answer
25 views
Labeling one class for cross validation in libsvm matlab
I want to use one-class classification using LibSVM in MATLAB.
I want to train data and use cross validation, but I don't know what I have to do to label the outliers.
If for example I have this ...
0
votes
1answer
17 views
use grid.py with liblinear giving error
I've been always using linear kernels in libsvm by following command
python grid.py -log2c -1,10,1 -log2g -1,1,1 -t 0 data
But I now consider linear kernel in libsvm is different from liblinear. ...
0
votes
0answers
6 views
The lagrange multipliers of SVM [migrated]
Actually the solve the SVM is to solve the following Lagrangian Equation:
If we don't use kernel function. < x(i), x(j)> is just the vector vector inner product. The aiaj< x(i), x(j)> is ...
0
votes
1answer
19 views
SVM LibSVM Ignore Feature 1,3,5 when Predicting
this question is about LibSVM or SVMs in general.
I wonder if it is possible to categorize Feature-Vectors of different length with the same SVM Model.
Let's say we train the SVM with about 1000 ...
0
votes
0answers
19 views
How to rank svm_predict() output of libsvm in java?
I am doing a classification task (-1 and +1) using LIBSVM in JAVA. In LIBSVM i use kernel_type=RBF and svm_type=C_SVC and all other parameter value are default.
How do I rank output of svm_predict() ...
0
votes
1answer
17 views
libsvm - what is the format of “dataset” used as a parameter of the grid.py script
I am new at svm world and have following question:
The python script for searching for the best combination of C and gamma must be called as following:
grid.py [grid_options] [svm_options] dataset
...
0
votes
0answers
26 views
Non-zero bias parameter in scikit-learn decreases classification quality
I'm using LinearSVC as a classifier for text classification. My features are TF-IDF weights which are definately not centered as they all have values above zero. Nevertheless, setting fit_intercept to ...
-5
votes
0answers
57 views
How can i use libsvm to classify an array in c/c++? [closed]
I am looking for some help on how to classify (predict) an array with libsvm in c/c++ code and I am looking for an example code to try with it.
0
votes
0answers
11 views
Can Prtools give the probabilities of each class for each test data like libSVM?
I need to classify some audio features and then fuse them with video results, for that mean the probability of each class for test data is needed.
By libSVM i can get these values but Prtools is ...
-1
votes
0answers
18 views
How can I calculate feature weights from the libsvm linear kernel model file? [closed]
i am new to libsvm but managed to get a libsvm model from my training instances using the linear kernel. i want to calculate the weights for my features but have not been able to find out how to do ...
0
votes
0answers
42 views
grid.py get no rate on dataset
I am trying to run grid.py on libsvm-3.17 using some dataset. I am using the command
python grid.py -log2c -5,12,1 -log2v -12,5,1 -v 5 -m 300 <dataset>
Instructions over here. But the ...
0
votes
0answers
34 views
Libsvm in python [duplicate]
I'm trying to work with LibSVM in Python but I get the following when I try using svmutil.py and svm.py downloaded with libsvm package
undefined symbol: svm_get_sv_indices
I tried another way ...
0
votes
1answer
27 views
How to understand bias parameter in LIBLINEAR?
I don't understand the meaning of bias parameter in the API of LIBLINEAR. Why is it specified by user during the training? Shouldn't it be just a distance from the separating hyperplane to origin ...
0
votes
0answers
46 views
Error with installing LIBSVM
I'm trying to install LIBSVM on UBUNTU 12.04 Desktop edition but it doesn't work. I have tried so many way and I read all the instructions in the READ ME file but still doesn't work and give me the ...
0
votes
1answer
38 views
Any relation between svm_train data's order and result?
I'm using libSVM with Python.
And I feel the question.
In using un-ordered index train data, I got un-expect result.
For example, result of operating set of some articles unclassified are all same ...
1
vote
1answer
47 views
How to implement LIBSVM Matlab interface?
I am having problem with implementing LibSVM to MATLAB. I downloaded LibSVM package, libsvm-3.14 to my Windows 7 PC and tried to implement it, but I got this message:
"No supported SDK or compiler ...
-1
votes
2answers
35 views
Is there a way to use SVM to build a model that contains a pre-defined percentage of the training data?
Say, I wish to use LIBSVM to build a model that contains 70% of the training data. Is that possible?
0
votes
0answers
40 views
libSVM plotROC using MATLAB giving inconsistent results
I have a binary classification problem. I'm using libSVM with the plotROC, but the AUC values are bizarre. The accuracy, according to the same function, is 24% (908 out of 3741) and the confusion ...
0
votes
1answer
88 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 ...
2
votes
1answer
48 views
One Class Classifier Training
I'm working on a classification problem where I have data about only One Class, so I wanna classify between that "Target"class against all other possibilities which is the "Outlier" Class. Therefore, ...
0
votes
1answer
74 views
LIBSVM Evaluation with F-Score, Precision or Recall
I am new to Libsvm, and I just tried doing cross validation using grid.py and it gave me only accuracy evaluation.
How do I make it show F-Score (preferred), or Precision and Recall?
Thanks!
0
votes
0answers
52 views
Weka Initialize Evaluation for test
I have a question about weka using java code.
I want to know how to initialize an Evaluation variable to use it with a previously saved model and test data.
I first train the model by doing this:
...
0
votes
1answer
109 views
libsvm svmpredict method output model file
I use libsvm svmpredict method for classifying the images on Matlab.
I need svmpredict method's output model file that has extension with ".model". But I cannot create it. My usage is that,
model = ...
-1
votes
1answer
75 views
regarding using a c program for converting csv file to a specific format [closed]
I am trying to use the convert.c, which is provided on libsvm website, to convert the csv file to libsvm data format. But I never use C and the website does not provide any information on how to use ...
0
votes
0answers
41 views
How to get weight w from libsvm train?
When I apply svm_train in.txt mo.model (libsvm in java ) then I get following output:
svm_type c_svc
kernel_type rbf
gamma 0.0136986
nr_class 2
total_sv 42
rho 0.727841
label 1 -1
nr_sv 12 30
SV
1 ...
0
votes
0answers
19 views
Cross domain Combination of classifier in java
How to combine linear SVM and non-linear SVM output with equal weight in JAVA libSVM?
and
How to calculate weight of non-linear SVM?
0
votes
0answers
79 views
How to get prediction labels from libsvm weka CLI for multi-class classification
I am using LibSVM through WEKA for multi-class text-classification task. I don't understand how to interpret the prediction labels. Number of errors shown in prediction-output and ...
0
votes
1answer
52 views
Documents classification using SVM
Which is the best SVM algorithm for a document classification project?
2
votes
3answers
61 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
0answers
53 views
Matlab libSVM, use weights from weka
In matlab I have a matrix X and a vector Y where X is a matrix with features as columns and instances as rows and Y is a vector of labels. For example:
X =
0 1 3 0
4 0 2 ...
1
vote
1answer
66 views
Import an SVM model in PMML to Java or Python?
Short question: is there a PMML interface for Java, Python or any other major programming language that supports SVM models?
Background: I have trained an SVM model in R using the ksvm function from ...
0
votes
0answers
16 views
How to fix training set and testing set when using sequentialfs()
I'm now working on Matlab and I'm wondering how to do features selection with one-class SVM (LibSVM).
I know that there is a function called sequentialfs() which is designed to do feature selection ...
0
votes
0answers
69 views
improve document classification method
I have a program to predict whether a news article is about a certain topic.
There is two main scripts:
1) bow_train.py - generates a wordlist and a model and stores them in two files (arab.model ...
0
votes
0answers
45 views
Libsvm can not detect True Negative when do clasiffication
I run libsvm in matlab with 40 FP and 13 TN. I want to classify the dataset into two classes: cancer and non-cancer. When I try with this data using svm classification, I got 90.57% . with the ...
1
vote
1answer
378 views
How to Setup LIBSVM for Python
I built libsvm on Mac OS X with make.
$ tar xzfv libsvm-3.17.tar.gz
$ cd libsvm-3.17
$ make
This built the various libsvm binaries:
$ ls
COPYRIGHT heart_scale svm-predict.c svm-train.c ...
0
votes
0answers
12 views
Request Help About libsvm
Good afternoon, everyone. I am woring on a program related with texts classification. The basic idea is as follows: provided with some texts, one need to process them, and get the requested data in ...
0
votes
0answers
44 views
How to handle unbalance dataset training and testing when do the classfication using libsvm
I have a problem when do the classification using libsvm. the data that i used is TP=13 FP=40. and also i used 5-cross validation. but when i try it with different parameter(parameter gabor filter, ...
0
votes
0answers
41 views
The same result when I do classification with gabor feature and libsvm
i want to ask. I want to classify mass and no mass breast cancer. so, I extract the feature using gabor feature which is can be tuned in a different scale and orientation and then i do the ...
0
votes
1answer
154 views
svmtrain error “Group must be a vector.”
I am trying to train a SVM with the Matlab interface of LibSVM, but I get following error
model = svmtrain(Classes(train),Attributes(train,:),'-s 0 -t 2');
??? Error using ==> svmtrain at 172 ...
0
votes
0answers
39 views
PHP can't display output from .exe with argument / param
I'm working with PHP. The objective is the program can run .exe from server side. I use .exe file using C language.
.exe that I use is svm-predict from lib-svm 3.14.
In normally, I use to call ...
0
votes
1answer
78 views
Bad results when testing libsvm in matlab
can someone help me to solve this?
I want to test whether this classification is already good or not. So, I try with data testing=data training. it will give 100% (acc) if the classification is good.
...
0
votes
2answers
241 views
problems after addpath libsvm library in matlab
i want to know how libsvm works. I tried this code in this link [1]: 10 fold cross-validation in one-against-all SVM (using LibSVM) . It's working (I havent added path libsvm library in matlab) but ...
1
vote
1answer
61 views
libsvm - python on mac alert malloc error
Im using this for making classifier.
when i let do svm_predict,
this alerts
Accuracy = 0% (0/1) (classification)
[2.0]
(0.0, 4.0, nan)
[[0.12612545919459253, 0.43547967330944765, ...
