vote up 5 vote down star
5

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 reinforcement learning theory but was wondering if anyone in the SO community had hands on experience with this type of thing.

  1. What would your recommended readings be for an implementation of reinforced learning in a tetris game?
  2. Are there any good open source projects that accomplish similar things that would be worth checking out?

Thanks in advanced

Edit: The more specific the better, but general resources about the subject are welcomed.

Follow up:

Thought it would be nice if I posted a followup.

Here's the solution (code and writeup) I ended up with for any future students :).

Paper / Code

flag

4  
+1 for asking a good homework question. It's refreshing to see someone asking to learn something than asking to be given something. – Chris Lutz Apr 13 at 22:13
1  
Definitely agreed; asking for good learning resources is a great question, and it's also helpful for others in future – Sukasa May 28 at 22:04

6 Answers

vote up 6 vote down check

Take a look at this year’s RL-competition. One of the problem domains is a tetris game. There was a tetris problem last year too. Here’s the 52-page final report from last year’s fifth-place finalist, which goes into a lot of detail about how the agent worked.

link|flag
vote up 2 vote down

The Heaton Research ebook is quite good at explaining neural network concepts (with code). Chapter 4 is dedicated to machine learning and the various training methods for your networks. There is a downloadable library and sample applications for you to look at.

link|flag
vote up 1 vote down

Here is a good book on the subject:

Machine Learning and Data Mining: Introduction to Principles and Algorithms
by Igor Kononenko, Matjaz Kukar (June, 2007)

Also take a look at these open source projects:

link|flag
vote up 0 vote down

TD-Gammon, gnubackgammon, or any other similar project were massive successes in games.

Sutton & Barto's book "Reinforcement Learning: An Introduction" also has some other Case Studies.

link|flag
vote up 0 vote down

This is not specific to reinforced learning, but Stanford has a great series of lectures on machine learning on Youtube and iTunes.

The link is to the first lecture which takes approximately 30 minutes to dive into the content.

link|flag
vote up 0 vote down

In the follow up posted .. the link for the code - "code" is broken..

can you mail that to me at daiict.ankit@gmail.com

thanks in advance.

cheers !!

link|flag

Your Answer

Get an OpenID
or

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