Tagged Questions

Machine learning provides computer algorithms that automatically discover patterns in data and make intelligent decisions from them.

learn more… | top users | synonyms

140
votes
17answers
21k views

How does the Google “Did you mean?” Algorithm work?

I've been developing an internal website for a portfolio management tool. There is a lot of text data, company names etc. I've been really impressed with some search engines ability to very quickly ...
102
votes
21answers
5k views

What problems have you solved using artificial neural networks? [closed]

I'd like to know about specific problems you - the SO reader - have solved using artificial neural network techniques and what libraries/frameworks you used if you didn't roll your own. Questions: ...
52
votes
9answers
3k views

Overwhelmed by Machine Learning---is there an ML101 book?

It seems like there are so many subfields linked to Machine Learning. Is there a book or a blog that gives an overview of those different fields and what each of them do, maybe how to get started, ...
47
votes
15answers
1k views

Detecting patterns in waves

I'm trying to read a image from a electrocardiography and detect each one of the main waves in it (P wave, QRS complex and T wave). Now I can read the image and get a vector like (4.2; 4.4; 4.9; 4.7; ...
43
votes
5answers
1k views

How to approach number guessing game(with a twist) algorithm?

I am learning programming (python and algo’s) and was trying to work on a project that I find interesting. I have created a few basic python scripts but I’m not sure how to approach a solution to a ...
41
votes
8answers
3k views

Neural networks - obsolete? [closed]

According to an answer from here, artificial neural networks are obsoleted by Support Vector Machines, Gaussian Processes, generative and descriptive models. What is your opinion?
36
votes
11answers
3k views

Do People Actually Use Machine Learning?

I'm playing around with machine learning in an academic setting, and it's really fun. I'm wondering how machine learning algorithms such as Support Vector Machines make it into software applications. ...
34
votes
7answers
826 views

How to learn mouse movement?

I've been attempting to solve a requirement of synthesizing human-like mouse movement in an application of mine for the past few weeks. At the start I used simple techniques like polynomial and spline ...
30
votes
23answers
5k views

Best books, blogs, link, reading about AI and machine learning [closed]

I think that AI might be a precious tool in the developer's toolbox, and I'd like to know more about this field hoping that it will make my life easier as a developer. Can you recommend some ...
29
votes
12answers
4k views

cool project to use a genetic algorithm for?

I'm looking for a practical application to use a genetic algorithm for. Some things that have thought of are: Website interface optimization Vehicle optimization with a physics simulator Genetic ...
26
votes
8answers
3k views

When to use Genetic Algorithms vs. when to use Neural Networks?

Is there a rule of thumb or set of examples to determine when to use Genetic Algorithms versus when to use Neural Networks to solve a problem? I know there are cases in which you can have both ...
26
votes
14answers
4k views

Is there a recommended package for machine learning in Python? [closed]

Is there a recommended package for machine learning in Python? I have previous experience in implementing a variety of machine learning and statistical algorithms in C++ and MATLAB, but having done ...
26
votes
12answers
3k views

Machine Learning in Game AI

In the old days of gaming, I'm sure simple switch/case statements (in a sense) would have done just fine for most of the game "AI." However, as games have become increasing complex, especially at the ...
22
votes
3answers
609 views

Resources for working with Machine Learning in F#

I have learned a Machine Learning course using Matlab as a prototyping tool. Since I got addicted to F#, I would like to continue my Machine Learning study in F#. I may want use F# for both ...
22
votes
10answers
880 views

Playground for Artificial Intelligence?

In school, one of my professors had created a 3D game (not just an engine), where all the players were entirely AI-controlled, and it was our assignment to program the AI of a single player. We were ...
22
votes
9answers
5k views

Machine learning in OCaml or Haskell?

I'm hoping to use either Haskell or OCaml on a new project because R is too slow. I need to be able to use support vectory machines, ideally separating out each execution to run in parallel. I want ...
21
votes
4answers
714 views

Real world typo statistics?

Where can I find some real world typo statistics? I'm trying to match people's input text to internal objects, and people tend to make spelling mistakes. There are 2 kinds of mistakes: typos - ...
21
votes
9answers
1k views

What is machine learning?

What is machine learning ? What does machine learning code do ? When we say that the machine learns, does it modify the code of itself or it modifies history (database) which will contain the ...
20
votes
7answers
760 views

How do I approximate “Did you mean?” without using Google?

I am aware of the duplicates of this question: How does the Google “Did you mean?” Algorithm work? How do you implement a “Did you mean”? ... and many others. These questions are interested in ...
19
votes
6answers
686 views

How to train an artificial neural network to play Diablo 2 using visual input?

I'm currently trying to get an ANN to play a video game and and I was hoping to get some help from the wonderful community here. I've settled on Diablo 2. Game play is thus in real-time and from an ...
19
votes
5answers
1k views

Which machine learning library to use

I am looking for a library that, ideally, has the following features: implements hierarchical clustering of multidimensional data (ideally on similiarity or distance matrix) implements support ...
18
votes
1answer
657 views

Applying machine learning to a guessing game?

I have a problem with a game I am making. I think I know the solution(or what solution to apply) but not sure how all the ‘pieces’ fit together. How the game works: (from How to approach number ...
18
votes
4answers
797 views

“Anagram solver” based on statistics rather than a dictionary/table?

My problem is conceptually similar to solving anagrams, except I can't just use a dictionary lookup. I am trying to find plausible words rather than real words. I have created an N-gram model (for ...
18
votes
5answers
1k views

Machine learning challenge: diagnosing program in java/groovy (datamining, machine learning)

I'm planning to develop program in Java which will provide diagnosis. The data set is divided into two parts one for training and the other for testing. My program should learn to classify from the ...
18
votes
11answers
2k views

How hard is it to implement a chess engine?

I'm wondering how hard it would be to implement a chess engine. Are there already open-source implementations? It seems that you'd need a scoring function for a given board constellation, and a very ...
18
votes
3answers
15k views

What are some popular OCR algorithms?

I've been interested in machine learning and computer vision for a while, so I've decided to attempt to build a simple Optical Character Recognition demo in C#. I'm looking for a description of some ...
16
votes
6answers
227 views

How to make virtual organisms learn using neural networks?

I'm making a simple learning simulation, where there are multiple organisms on screen. They're supposed to learn how to eat, using their simple neural networks. They have 4 neurons, and each neuron ...
15
votes
5answers
749 views

Machine Learning Algorithm for Predicting Order of Events?

Simple machine learning question. Probably numerous ways to solve this: There is an infinite stream of 4 possible events: 'event_1', 'event_2', 'event_4', 'event_4' The events do not come in in ...
14
votes
7answers
686 views

Large scale Machine Learning

I need to run various machine learning techniques on a big dataset (10-100 billions records) The problems are mostly around text mining/information extraction and include various kernel techniques but ...
14
votes
6answers
471 views

Problem with Precision floating point operation in C

For one of my course project I started implementing "Naive Bayesian classifier" in C. My project is to implement a document classifier application (especially Spam) using huge training data. Now I ...
14
votes
5answers
439 views

How can I measure the speed of code written in Java? (AI algorithms)

How can I measure the speed of code written in Java? I planning to develop software which will solve Sudoku using all presently available AI and ML algorithms and compare time against simple ...
14
votes
4answers
4k views

Logo recognition in images

Does anyone know of recent academic work which has been done on logo recognition in images? Please answer only if you are familiar with this specific subject (I can search Google for "logo ...
14
votes
7answers
4k views

Pointers to some good SVM Tutorial

I have been trying to grasp the basics of Support Vector Machines, and downloaded and read many online articles. But still am not able to grasp it. I would like to know, if there are some nice ...
13
votes
10answers
1k views

Nearest neighbors in high-dimensional data?

I have asked a question a few days back on how to find the nearest neighbors for a given vector. My vector is now 21 dimensions and before I proceed further, because I am not from the domain of ...
13
votes
1answer
451 views

Fastest general machine learning library?

Weka is probably the most popular general purpose machine learning library. But it can be quite slow in my experience. I have been looking at Shark, Waffles, dlib, Plearn, and MLC++ as alternatives. ...
13
votes
10answers
5k views

Mathematics for AI/Machine learning?

I intend to build a simple recommendation systems for fun. I read a little on the net and figured being good at math would enable on to build a good recommendation system. My math skills are not ...
13
votes
8answers
791 views

What are known uses of AI in web development?

What are known uses of AI/machine-learning in web development? And what would be some fields that, currently don't use AI, but could possibly benefit from AI? Note: I've worked on AI for academics, ...
12
votes
7answers
2k views

When to choose which machine learning classifier?

Suppose I'm working on some classification problem. (Fraud detection and comment spam are two problems I'm working on right now, but I'm curious about any classification task in general.) How do I ...
12
votes
5answers
393 views

Unit Testing Machine Learning Code

I am writing a fairly complicated machine learning program for my thesis in computer vision. It's working fairly well, but I need to keep trying out new things out and adding new functionality. This ...
12
votes
4answers
1k views

Help with Perceptron

Here is my perceptron implementation in ANSI C: #include <stdio.h> #include <stdlib.h> #include <math.h> float randomFloat() { srand(time(NULL)); float r = (float)rand() / ...
12
votes
5answers
6k views

Netflix prize dataset?

I am looking to work on a machine learning project for my course and I would like to use the Netflix Prize dataset, But it looks like the contest is closed and the dataset is not available for ...
12
votes
15answers
2k views

The business of Artificial Intelligence

I'm putting together a presentation aimed towards entrepreneurs on the present state of industrial AI development, titled "The business of AI"; however, what little resources I have found on Google ...
12
votes
5answers
749 views

Good implementations of reinforced learning?

For an ai-class project I need to implement a reinforcement learning algorithm which beats a simple game of tetris. The game is written in Java and we have the source code. I know the basics of ...
12
votes
7answers
404 views

What are some ways to have fun with a large amount of data? (ie, the Twitter, del.icio.us etc. APIs)

Twitter, Google, Amazon, del.icio.us etc. all give you a lot of data to play with, all for free. There's also a lot of textual data available through initiatives like Project Gutenberg. And that, it ...
11
votes
4answers
215 views

How do I find Wally with Python?

Shamelessly jumping on the bandwagon :-) Inspired by How do I find Waldo with Mathematica and the followup How to find Waldo with R, as a new python user I'd love to see how this could be done. It ...
11
votes
1answer
191 views

Hidden Markov Models with C++

I've been looking into implementations of Hidden Markov Models in C++ lately. I was wondering If I could use any of the existing HMM libraries written in C++ out there to use with Action Recognition ...
11
votes
3answers
937 views

Java's Mahout equivalent in Python

Java based Mahout's goal is to build scalable machine learning libraries. Are there any equivalent libraries in Python ?
11
votes
4answers
710 views

What are Useful Ranking Algorithms for Documents without Links (e.g. PDF, MS Documents, etc…)?

I've looked at Algorithms of the Intelligent Web that describes (page 55) an interesting algorithm - called DocRank - for creating a PageRank like score for business documents (i.e. documents without ...
11
votes
4answers
417 views

How to check if an image contains a face and it is reasonably visible

I am not sure if this is solveable, but I though I will ask anyway. In my company we deal with massive enrollment camps where small teams of 5 to 10 people go to a village and enroll people. The ...
11
votes
3answers
574 views

Is there some .NET machine learning library that could, for example, suggest tags for a question?

Just to use it as an example, StackOverflow users already associated tags to questions for a lot of questions. Is there a .NET machine learning library that could use this historic data to 'learn' ...

1 2 3 4 5 21