The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
11answers
1k 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 ...
13
votes
9answers
543 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, ...
11
votes
3answers
743 views

Beginner's resources/introductions to classification algorithms

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 ...
11
votes
3answers
2k 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?
10
votes
1answer
327 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
2answers
234 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 ...
9
votes
1answer
408 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 ...
9
votes
12answers
659 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 ...
9
votes
6answers
828 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' ...
9
votes
9answers
725 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 ...
8
votes
9answers
2k 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 ...
8
votes
5answers
3k 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 ...
7
votes
5answers
151 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 ...
7
votes
2answers
194 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 ...
7
votes
3answers
570 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
4answers
3k views

Best Java library for automatic language identification? [closed]

Which is the best Java library for automatic language identification/classification? Hypothetical syntax: String languageCode = LanguageIdentificationAPI.identifyLanguage("Hello world."); // ...
6
votes
3answers
221 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 ...
6
votes
1answer
288 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 ...
6
votes
4answers
408 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 ...
6
votes
2answers
532 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 ...
6
votes
2answers
297 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 ...
6
votes
4answers
790 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 ...
6
votes
2answers
802 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). ...
5
votes
1answer
120 views

How to find whether a url is of ecommerce or non ecommerce website, programatically?

In a project there is a module takes a URL and determines whether it is of "Ecommerce" or "NON-Ecommerce" website. I have tried following approaches: Using Apache mahout, Classification : URL ---> ...
5
votes
2answers
175 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 ...
5
votes
3answers
272 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 ...
5
votes
3answers
274 views

Identify pattern in image

what is the best approach to identify a pattern (could be a text,signature, logo. NOT faces,objects,people,etc) in an image, given that all images are taken from the same angle, which means the ...
5
votes
3answers
236 views

Large Scale Image Classifier

I have a large set of plant images labeled with the botanical name. What would be the best algorithm to use to train on this dataset in order to classify an unlabel photo? The photos are processed so ...
5
votes
4answers
116 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 ...
5
votes
1answer
195 views

How do you write a magic file test pattern to match the end of a file?

I am beginning to wonder if this is even possible as multiple searches on SO, Google, Bing and linuxquestions.org have turned up nothing. Basically I am interested in extending the magic patterns ...
5
votes
2answers
485 views

Neural network example to classify multi-dimensional features into two sets

I'm looking for a good source code example of a supervised neural network which accepts more than two features (unlike most XY-examples) and classifies data into two sets. From what I've read, a ...
5
votes
1answer
973 views

Multilabel AdaBoost for MATLAB

I am currently looking for a multilabel AdaBoost implementation for MATLAB or a technique for efficiently using a two-label implementation for the multilabel case. Any help in that matter would be ...
5
votes
3answers
167 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 ...
5
votes
3answers
789 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 ...
5
votes
7answers
519 views

I want a machine to learn to categorize short texts

I have a ton of short stories about 500 words long and I want to categorize them into one of, let's say, 20 categories: Entertainment Food Music etc I can hand-classify a bunch of them, but I ...
5
votes
5answers
796 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 ...
5
votes
3answers
745 views

Question About Using Weka, the machine learning tool

I'm using the explorer feature of Weka for classification. So I have my .arff file, with 2 features of NUMERIC value, and my class is a binary 0 or 1 (eg {0,1}). Sample: @RELATION summary ...
5
votes
4answers
1k views

Know any good c++ support vector machine (SVM) libraries?

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 ...
5
votes
3answers
216 views

Kernel methods for large scale dataset

Kernel-based classifier usually requires O(n^3) training time because of the inner-product computation between two instances. To speed up the training, inner-product values can be pre-computed and ...
5
votes
4answers
2k 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 ...
4
votes
2answers
83 views

Incrementally Trainable Entity Recognition Classifier

I'm doing some semantic-web/nlp research, and I have a set of sparse records, containing a mix of numeric and non-numeric data, representing entities labeled with various features extracted from ...
4
votes
1answer
200 views

Liblinear how to use it

I'm fairly new at machine learning and text mining in general. It has come to my attention the presence of a ruby library called Liblinear https://github.com/tomz/liblinear-ruby-swig. What I want to ...
4
votes
1answer
596 views

OpenCV - Haar classifier for long objects with different angles

I have used Haar classifier with OpenCV before succesfully. Unfortunately it seems to work only on square objects and fixed angles (i.e. faces). However I need to find "long" (rectangular) objects ...
4
votes
3answers
302 views

Feature selection and unsupervised learning for multilingual data + machine learning algorithm selection

Questions I want to classify/categorize/cluster/group together a set of several thousand websites. There's data that we can train on, so we can do supervised learning, but it's not data that we've ...
4
votes
1answer
161 views

How does List::Util 'shuffle' actually work?

I am currently working on building a classifier using c5.0. I have a dataset of 8000 entries and each entry has its own i.d number (1-8000). When testing the performance of the classifier I had to ...
4
votes
1answer
353 views

Resolving a 'model empty' error in cross-validation for SVM classification when using the CMA Bioconductor package for R

I am using the Bioconductor package CMA to perform internal, Monte Carlo cross-validation (MCCV) on SVM classifiers in a microarray dataset. CMA internally uses the e1071 R package for the SVM work. ...
4
votes
3answers
184 views

How to include words as numerical feature in classification

Whats the best method to use the words itself as the features in any machine learning algorithm ? The problem I have to extract word related feature from a particular paragraph. Should I use the ...
4
votes
6answers
551 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 ...
4
votes
4answers
401 views

What subjects, topics does a computer science graduate need to learn to apply available machine learning frameworks, esp. SVMs

I want to teach myself enough machine learning so that I can, to begin with, understand enough to put to use available open source ML frameworks that will allow me to do things like: Go through the ...
4
votes
2answers
254 views

Machine leaning algorithm for data classification

I'm looking for some guidance about which techniques/algorithms I should research to solve the following problem. I've currently got an algorithm that clusters similar-sounding mp3s using acoustic ...

1 2 3 4 5 6