Advertisement

Q-Learning (Machine Learning)

Started by June 05, 2006 05:19 PM
2 comments, last by firefly2442 18 years, 5 months ago
Hello. I'm trying to learn the Q-Learning Machine Learning Algorithm and I'm having a hard time. I have various papers on the topic but all of them start out OK but then delve into math and equations which doesn't really help me. Does anyone know of any explanations or tutorials online that will explain the topic without using so much math and symbols? I've looked on google but haven't found much. Thanks in advance. :)
http://www.rivetcode.com
Go directly to the source (and still one of the best introductions to this material) and get a hold of Rich Sutton and Andrew Barto's book, "Reinforcement Learning: An Introduction".

Cheers,

Timkin
Advertisement
I second the sutton and barto book. You can even look at a copy online:

http://www.cs.ualberta.ca/%7Esutton/book/ebook/the-book.html
Thanks for the help. I think I understand the algorithm for the most part although I have one question:

Given the Q-learning equation:

Qnow = Qnow + alpha(reward + gamma * max(Qnext) - Qnow)


I understand that alpha is a variable that determines how effective that learning is given that point in time, but I'm still a little lost on the gamma variable. Thanks. :)
http://www.rivetcode.com

This topic is closed to new replies.

Advertisement