In machine learning and statistics, classification is the problem of identifying which of a set of categories a new observation belongs to, on the basis of a training set of data containing observations whose category membership is known.
76
votes
6answers
17k views
What are advantages of Artificial Neural Networks over Support Vector Machines? [closed]
ANN (Artificial Neural Networks) and SVM (Support Vector Machines) are two popular strategies for supervised machine learning and classification. It's not often clear which method is better for a ...
24
votes
11answers
2k views
Detecting an online poker cheat
It recently emerged on a large poker site that some players were possibly able to see all opponents cards as they played through exploiting a security vulnerability that was discovered.
A naïve ...
23
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 ...
18
votes
1answer
16k views
How to interpret weka classification?
How can we interpret the classification result in weka using naive bayes?
How is mean, std deviation, weight sum and precision calculated?
How is kappa statistic, mean absolute error, root mean ...
14
votes
9answers
4k views
Using Artificial Intelligence (AI) to predict Stock Prices
Given a set of datavery similar to the Motley Fool CAPS system, where individual users enter BUY and SELL recommendations on various equities. What I would like to do is show each recommendation and ...
14
votes
3answers
2k views
Beginner's resources/introductions to classification algorithms [closed]
everybody. I am entirely new to the topic of classification algorithms, and need a few good pointers about where to start some "serious reading". I am right now in the process of finding out, whether ...
13
votes
9answers
862 views
C#: Is there a way to classify enums?
Given the following enum:
public enum Position
{
Quarterback,
Runningback,
DefensiveEnd,
Linebacker
};
Is it possible to classify the named constants, ...
13
votes
3answers
3k views
What's the best open-source Java Bayesian spam filter library?
In other answers at Stackoverflow it's been suggested that Weka is good, but there are others (Classifier4j, jBNC, Naiban).
Does anyone have actual experience with these?
12
votes
1answer
2k views
HBase & Mahout - Using HBase as a Datastore/source for Mahout - Classification
I'm working on a large text classification project and we have our text data (simple messages) stored in HBase.
We have two problems, first we would like to use HBase as the source for Mahout ...
11
votes
6answers
3k views
Java machine learning library for commercial use?
Does anyone know a good Java machine learning library I can use for a commercial product?
Weka and Rapidminer unfortunately do not allow this. I already found Apache Mahout and Java Data Mininng ...
11
votes
1answer
2k views
How to engineer features for machine learning
Do you have some advices or reading how to engineer features for a machine learning task?
Good input features are important even for a neural network. The chosen features will affect the needed number ...
11
votes
12answers
2k views
Recognise an arbitrary date string
I need to be able to recognise date strings. It doesn't matter if I can not distinguish between month and date (e.g. 12/12/10), I just need to classify the string as being a date, rather than ...
11
votes
6answers
2k views
What algorithms are suitable for this simple machine learning problem?
I have a what I think is a simple machine learning question.
Here is the basic problem: I am repeatedly given a new object and a list of descriptions about the object. For example: new_object: 'bob' ...
11
votes
3answers
1k views
Calculating the perplexity of a language model for email classification
I have a feature set of 500 of the most frequently occuring uni-grams from a corpus of emails. I have been using this to classify emails using c5.0 based on the occurence/absence of each of the words ...
10
votes
22answers
2k views
Categorizing Words and Category Values
We were set an algorithm problem in class today, as a "if you figure out a solution you don't have to do this subject". SO of course, we all thought we will give it a go.
Basically, we were provided ...
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 ...
10
votes
2answers
2k views
Recommended anomaly detection technique for simple, one-dimensional scenario?
I have a scenario where I have several thousand instances of data. The data itself is represented as a single integer value. I want to be able to detect when an instance is an extreme outlier.
For ...
10
votes
5answers
4k views
How does music fingerprinting work (for sites such as Shazam and Lala.com)?
My large (120gb) music collection contains many duplicate songs, and I've been trying to fingerprint tracks in the hopes of detecting duplicates. And since I'm a CS Major I'm very curious as to what ...
10
votes
2answers
479 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 ...
10
votes
2answers
1k views
General approach to developing an image classification algorithm for Dilbert cartoons
As a self-development exercise, I want to develop a simple classification algorithm that, given a particular cell of a Dilbert cartoon, is able to identify which characters are present in the cartoon ...
9
votes
2answers
2k views
Save NaiveBayes classifier to disk in Scikits learn
How do I save a trained Naive Bayes classifier to disk and use to predict data?
I have the following sample program from Scikits learn website:
from sklearn import datasets
iris = ...
9
votes
5answers
2k views
How to approach machine learning problems with high dimensional input space?
How should I approach a situtation when I try to apply some ML algorithm (classification, to be more specific, SVM in particular) over some high dimensional input, and the results I get are not quite ...
9
votes
6answers
4k views
Know any good c++ support vector machine (SVM) libraries? [closed]
Do you know of any good c++ svm libraries out there
I tried libsvm http://www.csie.ntu.edu.tw/~cjlin/libsvm/ but so far I'm not flabbergasted.
I have also heard of SVMLight and TinySVM. Have you ...
9
votes
9answers
890 views
Best approach to what I think is a machine learning problem
I am wanting some expert guidance here on what the best approach is for me to solve a problem. I have investigated some machine learning, neural networks, and stuff like that. I've investigated ...
9
votes
2answers
743 views
Training Naive Bayes Classifier on ngrams
I've been using the Ruby Classifier library to classify privacy policies. I've come to the conclusion that the simple bag-of-words approach built into this library is not enough. To increase my ...
9
votes
2answers
6k views
Sentiment analysis with NLTK python for sentences using sample data or webservice?
I am embarking upon a NLP project for sentiment analysis.
I have successfully installed NLTK for python (seems like a great piece of software for this). However,I am having trouble understanding how ...
9
votes
1answer
3k views
Extract tf-idf vectors with lucene
I have indexed a set of documents using lucene. I also have stored DocumentTermVector for each document content. I wrote a program and got the term frequency vector for each document, but how can I ...
8
votes
2answers
465 views
Algorithm to classify a list of products? Take 2
I asked a question similar to this one a couple of weeks ago, but I did not ask the question correctly. So I am re-asking here the question with more details and I would like to get a more AI oriented ...
8
votes
5answers
320 views
Randomness in Artificial Intelligence & Machine Learning
This question came to my mind while working on 2 projects in AI and ML. What If I'm building a model (e.g. Classification Neural Network,K-NN, .. etc) and this model uses some function that includes ...
8
votes
2answers
123 views
Why do scala maven artifacts have an artifact for each scala version instead of a classifier per scala version?
Since you have only source compatibility between Scala-versions you unfortunately need to compile libraries like scalatest or scalamock for each scala version they support. What puzzles me is that the ...
8
votes
3answers
1k views
Binarization in Natural Language Processing
Binarization is the act of transforming colorful features of of an entity into vectors of numbers, most often binary vectors, to make good examples for classifier algorithms.
If we where to binarize ...
8
votes
2answers
158 views
Classifiying a set of Images into Classes
I have the problem that I get a set of pictures and need to classify those.
The thing is, i do not really have any knowledge of these images. So i plan on using as many descriptors as I can find and ...
8
votes
2answers
370 views
Event correlation and filtering - How to, where-to start?
Got an asynchronous stream of events, where each event has information like -
Agency (one of many Agencies possible to be served by my solution)
Agent (one of many Agents in an Agency)
Served-Entity ...
8
votes
4answers
996 views
NLP and Machine learning for sentiment analysis
I'm trying to write a program that takes text(article) as input and outputs the polarity of this text, weather its a positive or a negative sentiment. I've read extensively about different approaches ...
7
votes
3answers
2k views
Probability and Neural Networks
Is it a good practice to use sigmoid or tanh output layers in Neural networks directly to estimate probabilities?
i.e the probability of given input to occur is the output of sigmoid function in the ...
7
votes
2answers
2k views
Save Naive Bayes Trained Classifier in NLTK
I'm slightly confused in regard to how I save a trained classifier. As in, re-training a classifier each time I want to use it is obviously really bad and slow, how do I save it and the load it again ...
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 ...
7
votes
2answers
1k views
Measuring the performance of classification algorithm
I've got a classification problem in my hand, which I'd like to address with a machine learning algorithm ( Bayes, or Markovian probably, the question is independent on the classifier to be used). ...
7
votes
4answers
369 views
Ontology-based string classification
I recently started working with ontologies and I am using Protege to build an ontology which I'd also like to use for automatically classifying strings. The following illustrates a very basic class ...
7
votes
1answer
4k views
How to implement decision tree with c# (visual studio 2008) - Help
I have a decision tree that i need to turn to a code in C#
The simple way of doing it is using if-else statements but in this solution i will need to create 4-5 nested conditions.
I am looking for a ...
7
votes
3answers
586 views
document image processing
I working on an application for processing document images (mainly invoices) and basically, I'd like to convert certain regions of interest into an XML-structure and then classify the document based ...
7
votes
2answers
2k views
How to Interpret Predict Result of SVM in R?
I'm new to R and I'm using the e1071 package for SVM classification in R.
I used the following code:
data <- loadNumerical()
model <- svm(data[,-ncol(data)], data[,ncol(data)], gamma=10)
...
7
votes
3answers
710 views
Detecting rare incidents from multivariate time series intervals
Given a time series of sensor state intervals, how do I implement a classifier which learns from supervised training data to detect an incident based on a sequence of state intervals? To simplify the ...
7
votes
2answers
2k views
I need to make a SVM in weka to filter documents using Java
I am an absolute beginner. Never made a classifier or anything in weka using Java I have used the interface before. Basically I am kind of lost I've looked at the filter class for weka and played ...
7
votes
1answer
601 views
Working with decision trees
I know tl;dr;
I'll try to explain my problem without bothering you with ton's of crappy code. I'm working on a school assignment. We have pictures of smurfs and we have to find them with foreground ...
7
votes
2answers
502 views
Gmail push notifications in Rails
I am developing an application where users add their Gmail accounts, and I do some classification work on their emails.
I want to be notified when a new email comes to any of the registered accounts.
...
6
votes
4answers
3k views
Neural networks for email spam detection
Let's say you have access to an email account with the history of received emails from the last years (~10k emails) classified into 2 groups
genuine email
spam
How would you approach the task of ...
6
votes
4answers
4k views
Java text classification problem
I have a set of Books objects, classs Book is defined as following :
Class Book{
String title;
ArrayList<tags> taglist;
}
Where title is the title of the book, example : Javascript for ...
6
votes
4answers
149 views
Determine how different are some vectors
I want to differentiate data vectors to find those that are similar. For example:
A=[4,5,6,7,8];
B=[4,5,6,6,8];
C=[4,5,6,7,7];
D=[1,2,3,9,9];
E=[1,2,3,9,8];
In the previous example I want to ...
6
votes
1answer
4k views
Haar Cascades vs. LBP Cascades in Face Detection
I have been experimenting with face detection in OpenCV (Open Source Computer Vision Library), and found that one could use Haar cascades to detect faces as there are several of them provided with ...