Tagged Questions
2
votes
1answer
37 views
Classifying stroke input as text or drawing
I'm interested in taking user stroke input (i.e. drawing with an iPad) and classifying it as either text or a drawing (or, I suppose, just non-text), in whatever capacity is reasonably feasible. I'm ...
1
vote
2answers
61 views
Literature on many-vs-many classifier
In the context of Multi-Class Classification (MCC) problem,
a common approach is to build final solution from multiple binary classifiers.
Two composition strategy typically mentioned are one-vs-all ...
2
votes
3answers
88 views
Fine Text Classification - what algorithm?
I'm looking to implement a classifier with approximately 150 categories (probably in Java) mostly for tweets (so very small documents).Some of the classes have very similar domains eg. 'Companies', ...
0
votes
2answers
58 views
Explain results of K-means
I make some predictions using classifiers and clusters in Weka.I know how to analyze the results of classifiers but i don't know what some results of clusters like K-means really mean.I know that ...
1
vote
1answer
43 views
Oversampling with Epsilon
I have a question about data mining. I have a dataset of 74 instances that belong to 4 classes. As the number of each class is not enough to obtain a good accuracy using some classifiers( svm, rna, ...
0
votes
0answers
55 views
Can someone help me debug this perceptron in Matlab?
I don't understand what's wrong with my perceptron. Sometimes the hyperplane is good, but for a reason it is modified and it should not! The weights are displayed at each iteration. Also, parsing data ...
0
votes
1answer
65 views
Is there a way to store gzip's dictionary from a file?
I've been doing some research on compression-based text classification and I'm trying to figure out a way of storing a dictionary built by the encoder (on a training file) for use to run 'statically' ...
1
vote
1answer
73 views
Classification algorithm for estimating the score
I want to detect some sort of sentiment orientation for text article. This problem seems related to classification problem, but instead of detecting probabilities of each class (negative, positive, ...
-2
votes
1answer
83 views
Ideas for designing an automated content tagging system needed [closed]
I am currently designing a website that amongst other is required to display and organise small amounts of text content (mainly quotes, article stubs, etc.). I currently have a database with 250,000+ ...
0
votes
1answer
199 views
how to preprocess data for classification in weka
I am starting to use WEKA and I want to use the k-NN classifier on this dataset
I am able to import the dataset into weka. But when i want to start the classifier, there it does not show me any ...
2
votes
1answer
50 views
maximum likelihood and support vector complexity
Can anyone give some references showing how to determine the maximum likelihood and support vector machine classifiers' computation complexity?
I have been searching the web but don't seem to find a ...
4
votes
3answers
382 views
Which classification algorithm can be used for document categorization?
Hey, Here is my problem,
Given a set of documents I need to assign each document to a predefined category.
I was going to use the n-gram approach to represent the text-content of each document and ...
2
votes
1answer
137 views
Binary Classification on a tupled dataset
I have a 2-class dataset on which I should apply a binary classification algorithm. The dataset looks like as follows:
a1, a2, a3, ...... +1
......
b1, b2, b3, .......-1
.......
where each ...
3
votes
2answers
105 views
What algorithms should I experiment with to try and classify these PDFs?
We are crawling and downloading lots of companies' PDFs and trying to pick out the ones that are Annual Reports. Such reports can be downloaded from most companies' investor-relations pages.
The PDFs ...
1
vote
1answer
73 views
Hash function for classification [closed]
Given a known set $A$ of distinct numbers $0 ~ 2^(n+1)-1$. In binary mode, it is a n-dimensional vector with 0/1 elements. Now for an arbitrary subset $S$ containing $m$ distinct numbers of $A$, is ...
5
votes
1answer
321 views
What is naive about Naive bayes?
What is naive about Naive Bayes? Have an exam later, and this was a question on the sample paper we received. We haven't found a good clear answer yet, could anyone explain this?
2
votes
3answers
271 views
Handling Incomplete Data (Data Sparsity) in kNN
I am trying to create a simple recommender system using knn.
Lets say I have some a table:
User | Book1 | Book2 | Book3 | Book4 | Book5 | Book6 | Book7 |
1 | 5 | ? | 3 | ? | 4 ...
2
votes
1answer
359 views
Genetic algorithm with matlab how to use classification accuracy as fitness function
I have a problem which I want to solve with matlab Genetic algorithm toolbox and I dont know how to solve it.
I want to calculate 3 coefficient in a formula in a way that it maximizes a function which ...
0
votes
3answers
2k views
How to calculate classification error rate
Alright. Now this question is pretty hard. I am going to give you an example.
Now the left numbers are my algorithm classification and the right numbers are the original class numbers
177 86
177 86
...
24
votes
2answers
10k views
A simple explanation of Naive Bayes Classification
I am finding it hard to understand the process of Naive Bayes, and I was wondering if someone could explained it with a simple step by step process in English. I understand it takes comparisons by ...
1
vote
1answer
339 views
Unsupervised classification - feature vectors are obtained
I need to classify commercial products. You know what price comparison engines does.
We have obtained the feature vectors. They are not the best yet pretty good. My last step is classifying them ...
0
votes
2answers
1k views
k nearest neighbor classifier training sample size for each class
Could someone please tell me whether the training sample sizes for each class need to be equal?
Can I take this scenario?
class1 class2 class3
samples 400 500 300
or ...
7
votes
6answers
1k views
Determine whether the two classes are linearly separable (algorithmically in 2D)
There are two classes, let's call them X and O. A number of elements belonging to these classes are spread out in the xy-plane. Here is an example where the two classes are not linearly separable. It ...
0
votes
2answers
106 views
Classification algorithms, which classifications can be evaluated as percentages
I'm implementing different classification algorithms to predict the outcome of soccer matches (Home, draw or away). In order to compare the classifications of different classifiers, the ...
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
1answer
78 views
Algorithm to select a property out of a pool
I am writing a program to add a certain property to a column. Basically each cell in that column has a ranked set of possible properties, for example:
Cell 1 -> properties[A,G,F,T,I]
Cell 2 -> ...
0
votes
1answer
362 views
Train-Test Split+Text classification+Naive Bayes
I'm using Mallet Naive Bayes algorithm to classify a big Dataset. My problem is how to split my dataset into train and test chunks?
Could anyone tell me the best methodology of train-test split?
my ...
5
votes
2answers
269 views
SQL classification
I have a system that tracks what documents users view. Each document has its ID and a cluster that it belongs to. My system tracks the session ID and the number of views. I would now like to construct ...
4
votes
3answers
448 views
Algorithms used for programmatic classification of recipes
I'm interested in classifying recipes programmatically based on a statistical analysis of various properties of the recipe. In other words, I want to classify a recipe as Breakfast, Lunch, Dinner or ...
-1
votes
1answer
81 views
Getting the General Idea of Vector's Classifiers
I have this "weird data" format type. It goes like this.
[v1, v2, v3, v4... vn] where n>0
now each "v" is a 2*1 vector. Example:
v3 = [time stamp, event]. (type [<string>, <string>])
...
0
votes
3answers
115 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
288 views
Classification algorithm for multi-touch screen
What is the algorithm can be used to resolve the following classification problem?
We have Multi-touch screen, user that can touch it with two or three fingers simultaneously.
After user touches ...
0
votes
2answers
227 views
Implementation details of a Bayesian classifier
I've implemented a simple Bayesian classifier, but I'm running into some overflow problems when using it on non-trivial amounts of data.
One strategy I tried in order to keep the numbers small, but ...
2
votes
3answers
434 views
URL path similarity/string similarity algorithm
My problem is that I need to compare URL paths and deduce if they are similar. Below I provide example data to process:
# GROUP 1
/robots.txt
# GROUP 2
/bot.html
# GROUP 3
...
3
votes
4answers
315 views
How can I build an algorithm to classify an HTML page based on keywords?
I'm trying to create an algorithm that set some relevance to a webpage based on keywords that it finds on the page.
I'm doing this at the moment:
I set some words and a value for they: "movie"(10), ...
2
votes
2answers
109 views
Problem implementing classifier algorithm for whitespace separated words
I have a text and split it into words separated by white spaces.
I'm classifying units and they work if it occurs in the same word (eg.: '100m', '90kg', '140°F', 'US$500'), but I'm having problems ...
1
vote
4answers
341 views
how to categorize but don't use Classification or Clustering algorithms?
I have a crawler program that stores sport data from 7 difference news agencies every day. it stores about 1200 sport news every day.
I want to categorize news of last two days into sub-categories. So ...
2
votes
1answer
100 views
How to classify a set of samples via a continuous feature?
For example I got below table which is simply a coarse distribution for 20 persons over their age
age count of person
...
0
votes
1answer
479 views
Looking for Jenks Optimization - Data Classification
I'm looking for an implementation of the Jenks Optimization algorithm for data classification.
Jenks is used to find "natural breaks" in the data.
I want to create kml maps for the US and color each ...
3
votes
1answer
349 views
Incremental Maximum Entropy Classifier
Can the algorithm that's used to build a maximum entropy classifier be modified to function incrementally, or is it by definition a batch process? I've found a few open source implementations, but ...
3
votes
6answers
533 views
Classify words to “good” and “bad”
I have a list of domain names and want to determine is name of domain looks like it is porno site or not. What the better way to do this? List of porn domains looks like http://dumpz.org/56957/ . This ...
1
vote
0answers
129 views
Finding out the most engaging websites on the web [closed]
I am looking for a way to find most engaging websites on the web. I thought of taking the websites having high alexa rank or high quantcast score. But, even google.com and other search engines are ...
3
votes
4answers
809 views
state-of-the-art of classification algorithms
We know there are like a thousand of classifiers, recently I was told that, some people say adaboost is like the out of the shell one.
Are There better algorithms (with
that voting idea)
What is ...
0
votes
1answer
306 views
what is “parameters” in classification algorithm
If I run a 5-fold cross validation on a particular data set on Weka, I will have a set of optimized parameter.
What is actually this parameter result that I am getting from a 5-fold cross validation?
...
10
votes
4answers
1k views
K Nearest-Neighbor Algorithm
Maybe I'm rather stupid but I just can't find a satisfying answer:
Using the KNN-algorithm, say k=5. Now I try to classify an unknown object by getting its 5 nearest neighbors. What to do, if 4 ...
4
votes
4answers
325 views
Are there any classification algorithms which target data with a one to many (1:n) relationship?
Has there been any research in the field of data-mining regarding classifying data which has a one to many relationship?
For example of a problem like this, say I am trying to predict which students ...
2
votes
2answers
619 views
optimal classification algorithm
I would like to know, from the below classification algorithm which one is optimal(in terms of memory and processing power) and which classification algorithm used widely?
k-Nearest Neighbor(KNN) ...
5
votes
7answers
1k views
Help me understand linear separability in a binary SVM
I'm cross-posting this from math.stackexchange.com because I'm not getting any feedback and it's a time-sensitive question for me.
My question pertains to linear separability with hyperplanes in a ...
2
votes
3answers
605 views
Clustering problem
I've been tasked to find N clusters containing the most points for a certain data set given that the clusters are bounded by a certain size. Currently, I am attempting to do this by plugging in my ...
2
votes
1answer
1k views
Incremental Decision Tree C++ Implementation
Do anyone know any incremental implementation of decision tree classifier. Such that it could generate optimal decision tree classifier when you add new instance to training set with low computation ...
