Introduction to Q-Learning for Game Play (12.2)

preview_player
Показать описание
Q-Learning is a powerful AI technique that can build a policy table that suggests an optimal action for the current state of an environment. This video introduces Q-Learning for Python to eventually be used with Keras.

Code for This Video:

Follow Me/Subscribe:

Рекомендации по теме
Комментарии
Автор

If I had a professor like you when I was a student, I could be a person like Linus Torvalds. 👍

GHRyu-pvcp
Автор

Great video, you turned it simple to understand.

samuelteixeiras
Автор

can't get the video to display when running locally.. any advice? cheers

rahimnealyakoob
Автор

Hi Jeff, I just want to bring it to your attention that the reward for this game is actually always -1. It's because... If you insert reward=-1 in the run_game function, the algorithm behaves in similar manner. So how come it works with no discriminatory action?

Titu-zu
Автор

If any of you face the following error from the introducing the mountain car cell run,

add these two code cells before it.

!sudo apt update

!sudo apt-get install xvfb

It will work.

sungminkim