The science and engineering of making intelligent machines.
306
votes
25answers
19k views
What is the best Battleship AI?
Battleship!
Back in 2003, (when I was 17,) I competed in a Battleship AI coding competition. Even though I lost that tournament, I had a lot of fun and learned a lot from it.
Now, I would like to ...
226
votes
19answers
15k views
Pacman: how do the eyes find their way back to the monster hole?
I found a lot of references to the AI of the ghosts in Pacman, but none of them mentioned how the eyes find their way back to the central ghost hole after a ghost is eaten by Pacman.
In my ...
105
votes
12answers
9k views
Defeating a Poker Bot
There is a new Open Source poker bot called PokerPirate. I am interested in any creative ways in which a web application could detect/thwart/defeat a poker bot. (This is a purely academic ...
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:
...
84
votes
37answers
13k views
What problems have you solved using genetic algorithms/genetic programming?
Genetic algorithms (GA) and genetic programming (GP) are interesting areas of research.
I'd like to know about specific problems you - the SO reader - have solved using GA/GP and what ...
62
votes
41answers
11k views
Best programming based games
Back when I was at school, I remember tinkering with a Mac game where you programmed little robots in a sort of pseudo-assembler language which could then battle each other. They could move themselves ...
54
votes
11answers
13k views
Why is Lisp used for AI?
I've been learning Lisp to expand my horizons because I have heard that it is used in AI programming. After doing some exploring, I have yet to find AI examples or anything in the language that would ...
48
votes
5answers
23k views
How do 20 questions AI algorithms work?
Simple online games of 20 questions powered by an eerily accurate AI.
How do they guess so well?
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?
33
votes
30answers
3k views
Are games the most complex / impressive applications?
I was thinking today about what could be the most complex / impressive application ever written. So I started thinking of what I am comfortable with and use everyday, databases.
Then I went into the ...
30
votes
15answers
4k views
Predict Stock Market Values
I'm building a web semantic project that gathers the maximum ammount of historic data about a certain company and tries to predict its future market stock values.
For data I have the historic stock ...
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 ...
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
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 ...
25
votes
3answers
2k views
Siri programming language
Supposedly, the engine behind the iPhone's new Siri feature has been under development for several years (spawned from the CALO project). It is said that they even developed a new programming language ...
25
votes
11answers
3k views
Good beginners material on Prolog
I am looking for good beginners material on Prolog, both online and printed. I am not only interested in 'learning the language' but also in background and scientific information.
22
votes
10answers
879 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
4k views
How to optimally solve the flood fill puzzle?
I like playing the puzzle game Flood-It, which can be played online at:
http://floodit.appspot.com/
It's also available as an iGoogle gadget. The aim is to fill the whole board with the least number ...
22
votes
14answers
7k views
source of historical stock data
I'm trying to make a stock market simulator (perhaps eventually growing into a predicting AI), but I'm having trouble finding data to use. I'm looking for a (hopefully free) source of historical stock ...
22
votes
10answers
1k views
Is it possible for a computer to “learn” a regular expression by user-provided examples?
Is it possible for a computer to "learn" a regular expression by user-provided examples?
To clarify:
I do not want to learn regular expressions.
I want to create a program which "learns" a regular ...
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 ...
21
votes
7answers
6k views
How does Dijkstra's Algorithm and A-Star compare?
I was looking at what the guys in the Mario AI Competition have been doing and some of them have built some pretty neat Mario bots utilizing the A* (A-Star) Pathing Algorithm.
(Video of Mario A* ...
21
votes
34answers
2k views
Which books have really interesting source code and explain it well?
I am looking for books that present interesting software system at the source code level. One such book which I loved is Building Problem Solvers. It presents a series of truth-maintenance systems ...
20
votes
5answers
1k views
Building a NetHack bot: is Bayesian Analysis a good strategy?
A friend of mine is beginning to build a NetHack bot (a bot that plays the Roguelike game: NetHack). There is a very good working bot for the similar game Angband, but it works partially because of ...
20
votes
13answers
1k views
How to create real-life robots?
Even before I learnt programming I've been fascinated with how robots could work. Now I know how the underlying programming instructions would be written, but what I don't understand is how those ...
20
votes
13answers
1k views
Recommendations needed for good AI references
I've been asked to help out on an XNA project with the AI. I'm not totally new to the concepts (pathfinding, flocking, etc.) but this would be the first "real" code. I'd be very thankful for any ...
19
votes
9answers
2k views
What is fuzzy logic?
I'm working with a couple of AI algorithms at school and I find people use the words Fuzzy Logic to explain any situation that they can solve with a couple of cases. When I go back to the books I just ...
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
1answer
373 views
Manhattan distance is over estimating and making me crazy
I'm implementing a-star algorithm with Manhattan distance to solve the 8-puzzle (in C). It seems to work very well and passes a lot of unit tests but it fails to find the shortest path in one case (it ...
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
13answers
2k views
Any business examples of using Markov chains?
What business cases are there for using Markov chains? I've seen the sort of play area of a markov chain applied to someone's blog to write a fake post. I'd like some practical examples though? E.g. ...
18
votes
6answers
4k views
Neural Network example in .NET
Any good tutorial with source that will demonstrate how to develop neural network (step bay step for dummies ;-))
17
votes
10answers
7k views
Problems in artificial intelligence research?
I'm currently a second-year undergraduate computer engineering student, and I'm a big fan of artificial intelligence. I've done formal research in nanotech, but in graduate school, I don't think that ...
16
votes
7answers
3k views
Rush Hour - Solving the game
Rush Hour
if you're not familiar with it, the game consists of a collection of cars of varying sizes, set either horizontally or vertically, on a NxM grid that has a single exit.
Each car can move ...
16
votes
11answers
1k views
Resources for Game Artificial Intelligence
I would like to start building/developing a game AI that will allow me to play games like: Chess, domino, poker, and Texas hold'em against computer opponent.
What are some of the books/resources are ...
16
votes
12answers
2k views
What's the best approach to recognize patterns in data, and what's the best way to learn more on the topic?
A developer I am working with is developing a program that analyzes images of pavement to find cracks in the pavement. For every crack his program finds, it produces an entry in a file that tells me ...
16
votes
7answers
2k views
How should I start designing an AI algorithm for an artillery warfare game?
Here's the background... in my free time I'm designing an artillery warfare game called Staker (inspired by the old BASIC games Tank Wars and Scorched Earth) and I'm programming it in MATLAB. Your ...
16
votes
10answers
10k views
How can I program a simple chat bot AI?
I want to build a bot that asks someone a few simple questions and branches based on the answer. I realize parsing meaning from the human responses will be challenging, but how do you setup the ...
15
votes
1answer
236 views
Create an A* search with PHP
i have a map stored as a multidimensional array ($map[row][col]) and i'd wish to create a path from point A to point B.
since i can have some obstacles with turns, corners etc etc, i'd wish to use ...
15
votes
7answers
1k views
Pong: How does the paddle know where the ball will hit?
After implementing Pacman and Snake I'm implementing the next very very classic game: Pong.
The implementation is really simple, but I just have one little problem remaining. When one of the paddle ...
15
votes
7answers
3k views
Any good card game AI strategies?
What would be strategies for writing a good computer opponent for a card game? Most card games are games of incomplete information, so simply mapping out and traversing the game tree as one could do ...
15
votes
6answers
907 views
AI Game Opinion (kind of homework related)
I have taken an AI course, and the teacher asked us to implement a game that makes use of one of the AI algorithms. Here is where I need a bit of help:
I don't know to what kind of games each ...
15
votes
6answers
1k views
An amnesia patient's “first” functional language? (I really like Clojure…)
I was recently diagnosed with a cascading dissociative disorder that causes retrograde amnesia in addition to an existing case of possible anterograde amnesia. Many people have tried to remind me of ...
14
votes
6answers
217 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 ...
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
5k views
My own OCR-program in Python
I am still a beginner but I want to write a character-recognition-program. This program isn't ready yet. And I edited a lot, therefor the comments may not match exactly. I will use the 8-connectivity ...
14
votes
8answers
636 views
What are some impressive algorithms or software in the world of AI?
I have always loved the idea of AI and evolutionary algorithms. Unfortunately as we all know the field hasnt developed nearly as fast as expected in the early days.
What I am looking for are some ...
13
votes
4answers
731 views
How to implement the Gaussian mutation operator for a genetic algorithm in Java
I try to learn and implement a simple genetic algorithm library for my project. At this time, evolution, selection of population is ready, and I'm trying to implement a simple good mutation operator ...
13
votes
7answers
613 views
Robot exploration algorithm
I'm trying to devise an algorithm for a robot trying to find the flag(positioned at unknown location), which is located in a world containing obstacles. Robot's mission is to capture the flag and ...
13
votes
9answers
842 views
Chess Optimizations
ok, so i have been working on my chess program for a while and i am beginning to hit a wall. i have done all of the standard optimizations (negascout, iterative deepening, killer moves, history ...