1
vote
1answer
57 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
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 ...
1
vote
1answer
83 views

find exact numbers of true postive in weka

In WEKA, I can easily find the TP Rate and total True Classified Instances from Confusion Matrix but is there any way to see exact number of tp and/or tn? And do you know any way to find these values ...
0
votes
1answer
157 views

Sensitivity /Specificity versus cutoff point plot in R?

Is there a package for making a sensitivity/specificity versus cutoff point plot in R? Preferable one that takes a glm object as an argument? Something like this is what i am looking for: PS: Does ...
0
votes
0answers
78 views

Creating datasets using prtools on matlab

i am new to using prtools for matlab and i am trying to tackle this exercise: Generate a dataset that consists of two 2-D uniformly distributed classes of objects using the rand command. Transform ...
0
votes
1answer
209 views

How does Laplace Smoothing Effect Prior / Evidence

I have a probability / stats question related to implementing Naive Bayes Classifiers, in particular about implementing Laplace Smoothing to avoid the Zero count issue and overfitting. From what Ive ...
1
vote
1answer
233 views

ID3 and C4.5: How Does “Gain Ratio” Normalize “Gain”?

The ID3 algorithm uses "Information Gain" measure. The C4.5 uses "Gain Ratio" measure which is Information Gain divided by SplitInfo, whereas SplitInfo is high for a split where records split evenly ...
0
votes
3answers
162 views

how to perfom classfication

I'm trying to perform document classification into two categories (category1 and category2), using Weka. I've gathered a training set consisting of 600 documents belonging to both categories and the ...
0
votes
1answer
356 views

Calculating accuracy of a predicted value

I have a multi-layer neural network based estimator that takes inputs the past arrival times of vehicles and estimates the arrival time of next vehicle (with a backpropagation algorithm). Based on a ...
4
votes
1answer
2k views

Naive Bayes row classification

How do you classify a row of seperate cells in MATLAB? At the moment I can classify single coloums like so: training = [1;0;-1;-2;4;0;1]; % this is the sample data. target_class = ...
0
votes
0answers
157 views

Ranking algorithm of Different weighted Resources

I have a list of items that represent cells, now i query each cell value to get a set of possible categories that this cell might belong to, these categories are weighted. For Example: Microsoft is: ...
0
votes
2answers
255 views

Machine Learning - Classification algorithm

I want to find the following probability: P(y=1/n=k; thetha) Read as: Probability, The prediction is class 1 given number of words = k, parametrized by thetha A traditional classification ...
0
votes
3answers
114 views

How to compute the success ratio in a classification task with multi-label assignments

There are N different classes that can be observed in my problem and my task is to detect which ones occurred at time t (of T frames). I created actualLabels and predictedLabels binary matrices of ...
0
votes
2answers
180 views

How to do statistical classification on an array in javascript?

I've got a bunch of numbers in an array and I need to do some statistics on them. I need to know how many of each number there are in the array. Here's the array: myArray = [2, 3, 3, 3, 4, 4, 5, ...
0
votes
2answers
327 views

Predicting a Poisson process

I want to predict the inter-arrival times of road traffic with Poisson distribution. At the moment, I produce the (synthetic) arrival times with Poisson process so that the inter-arrival times have ...
0
votes
1answer
670 views

online learning with Naive Bayes Classifier

I am trying to predict the inter-arrival time of the incoming network packets. I measure the inter-arrival times of network packets and represent this data in the form of binary features: xi= ...
1
vote
1answer
191 views

Crowdsourcing reliability measurements - spam/fraud detection

I'd like to collect some kind of geographical information from website users - for given set of data they will mark checkbox indicating whether place has or has not given property. Are there any ...
2
votes
1answer
125 views

Is there a PHP Fleiss' Kappa implementation?

I'm looking for a PHP implementation of Fleiss' Kappa that is publicly available. So far, I found some classes written in Java, Perl, Ruby and Python, but nothing in PHP. Do you have any idea or ...
3
votes
2answers
1k views

Classification score: SVM

I am using libsvm for multi-class classification. How can I attach classification scores, to compare the confidence of classification, with the output for a given sample as: Class 1: score1 Class 2: ...
2
votes
1answer
2k views

Plotting a decision boundary in matlab

I have two classes of data which are plotted in 2D and I wish to plot the nearest-neighbours decision boundary for a given value of k. I realise that there is a similar example provided in Matlab's ...
2
votes
4answers
731 views

'Probability' of a K-nearest neighbor like classification

I've a small set of data points (around 10) in a 2D space, and each of them have a category label. I wish to classify a new data point based on the existing data point labels and also associate a ...
1
vote
2answers
218 views

Measuring Error Rates Between Rank-Order Lists

I'm trying to measure the agreement between two different systems of classification (one of them based on machine-learning algorithms, and the other based on human ground-truthing), and I'm looking ...
5
votes
3answers
219 views

AI / Statistical methods for determining the name of a colour

I'm thinking about writing a little library to make a guess at the name of an (RGB value) colour, from a predetermined list of candidates. My first attempt was based purely on pythagorean distance ...
0
votes
2answers
58 views

Classifying captured data in unknown format?

I've got a large set of captured data (potentially hundreds of thousands of records), and I need to be able to break it down so I can both classify it and also produce "typical" data myself. Let me ...
4
votes
2answers
149 views

blindly classifying new trends in incoming data

how do news outlets like google news automatically classify and rank documents about emerging topics, like "obama's 2011 budget"? i've got a pile of articles tagged with baseball data like player ...