Tagged Questions
0
votes
1answer
88 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
66 views
Proper way to select statistically random dataset for cotraining in matlab
I have came across various ways to find out random dataset for training of a classifier in MATLAB like crossval and cvpartition etc. I have gone through all the examples but couldn't understand them ...
0
votes
2answers
497 views
WEKA Train and test set are not compatible when classifying boolean data
I am getting the following message in Weka Explorer when I try to use training data to classify new test data:
Problem evaluating classifier:
Train and test set are not compatible
Attributed differ ...
0
votes
1answer
84 views
Number of instances or the content of the instances more important (machine learning)?
Say in the document classification domain, if I'm having a dataset of 1000 instances but the instances (documents) are rather of small content; and I'm having another dataset of say 200 instances but ...
3
votes
2answers
289 views
simply changing csv header in apache Mahout classifier input produces different model?
I'm trying to go through the Mahout classifier example (donut.csv ). but I found that simply changing the name of some columns in the header row, and changing the corresponding predictor variable name ...
0
votes
2answers
686 views
How to clasify an unlabelled dataset with a newly trained NaiveBayes classifier in Weka
I have an unlabeled dataset that I want to classify with my newly trained classifier using NaiveBayes classification in Weka. So actually when in the Classify mode in weka if i give the option ...
0
votes
1answer
158 views
Binary SVM classifier failed with two classes: one is big, other one is small
I 'm trying to classify some pixels using a binary support vector machine. my training database is made of 28 data files and has two classes, number pixels of class1 is 16571 and number of pixels of ...
1
vote
1answer
1k views
LibSVM: -wi option (weight selection) during cross-validation and testing
I need help about the weight option of libSVM. I'm confused at some point; should we also use the -wi option while doing cross-validation? If so, should we use the calculated weights of the whole data ...
10
votes
2answers
506 views
Multi-layer neural network wont predict negative values
I have implemented a multilayer perceptron to predict the sin of input vectors. The vectors consist of four -1,0,1's chosen at random and a bias set to 1. The network should predict the sin of sum of ...