vote up 10 vote down star
7

So I'm just getting started in exploring A.I. a bit and I'm wondering what a good project would be to help introduce me to the field. An example of the level of complexity I'm looking for would be something like tic-tac-toe, or a bayesian spam filter, or...?

For what ever project you suggest it would be helpful if you could also give a brief overview of some common AI strategies that might be used to solve the project you're recommending.

Thanks!

flag

72% accept rate

10 Answers

vote up 9 vote down check

I had the same question when I taught myself AI. First thing I did though was to find out what the smart guys are using to learn this topic: Russell and Norvig's Artificial Intelligence: A Modern Approach. After halfway into the book, I wanted to start writing a program to test the theory. I don't quite remember where I got the recommendation, but I implemented 1-vs-AI game of Kalah.

In my opinion, getting your hands on a good text book and learning the concept is quicker way of understanding the topic, because the scope of the field is huge. Once you understand the topic, you can figure out the reasoning behind other's suggestion for test projects, and maybe you can pick on your own.

alt text

link|flag
That's exactly what I just did! lol I bought that last night and plan on doing the MIT course for that. – Justin Bozonier Oct 5 '08 at 19:05
I'm giving you the points on this because I just received the book and it is a great intro to AI. Everything from history to implementation. Thanks for the recommendation! – Justin Bozonier Oct 16 '08 at 18:35
vote up 5 vote down

In my A.I. course we developed an autonomous player of connect-4. We explored concepts related to game theory, like the Minimax algorithm and Alpha-Beta Pruning. I think that's a good start.

link|flag
vote up 2 vote down

Maybe a maze generator and solver, after that's done, you may want to find the shortest path between the start and the exit of the maze.

For solving the maze you could do backtracking, and for finding the shortest path A* or a similar algorithm.

link|flag
vote up 2 vote down

If you like the hands-on approach IMHO the best thing you can do is to get PAIP ("Paradigms of Artificial Intelligence Programming" by Peter Norvig). Author walks you through implementation of many classical AI programs, starting with General Problem Solver and ELIZA. Each chapter ends with a list of exercises which help you notice how deep some problems in AI are. Those exercises, more than anything, can get you hooked on AI big time, be warned. :)

It also teaches you Common Lisp along the way, which you'll surely find helpful later on.

link|flag
I just bought this book this weekend. I picked it up and it definitely makes the subject accessible (except for it being in lisp hehe). I've been meaning to learn lisp anyway. – Justin Bozonier Oct 13 '08 at 23:26
vote up 1 vote down

Pathfinding algorithms.

link|flag
vote up 1 vote down

It depends on the type of AI you want to do.

If you are looking for some kind of path-finding algorithm, I would start with a very simple 2-D array based world. I doesn't have to be graphic is could be a char[][]. If you build this world right you can use any number of path finding techniques such as A* or you could create a genetic algorithm that creates a pathfinding algorithm.

If you are looking for some king of strategy-base stuff, there is always mini-max. You could create a simplified version of chess (only pawns and bishops on a 4x8 grid). Once you have the world setup, you can have fun tuning the fitness function and matching different versions of the fitness functions against each other. Sorry for the sameless plug, here is the code to an old assignment where we did a similar program with minimax and alpha beta in java.

You could also learn clips, but I think the expert systems side of AI is really boring.

link|flag
vote up 0 vote down

As Maudite said, it depends on the type of AI You want to do.

Here is what I did (for cognitive AI) and I found it very challenging (and fun):

  1. Download and install SOAR and have a walk through the tutorials
  2. Try to write a SOAR-program that solves Sudoku.

Hint: To create Sudoku puzzles, You can use the linux program ksudoku and save the game.

link|flag
vote up 0 vote down

You could try to create a CAPTCHA cracker. If it worked, you could make some money selling it to spammers (if you had no morals).

link|flag
Hehe... maybe a bit too complex. How would one get started at something like this? – Justin Bozonier Oct 5 '08 at 18:11
vote up 0 vote down

RARS or CRobots(3D)

Those can get you started with writing AI that tries to find the best path, or best possible movement / shooting combination's.

They both come with a few examples already that you can look though to see how things are done.

link|flag
vote up 0 vote down

Write an implementation of skynet.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.