forked from dennybritz/reinforcement-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48594d9
commit 98382c5
Showing
3 changed files
with
66 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## Introduction | ||
|
||
### Learning Goals | ||
|
||
- Understand the Reinforcement Learning problem and how it differs from Supervised Learning | ||
- Understand what MDPs (Markov Decision Processes) are and how to interpret transition diagrams | ||
- Understand Value Functions, Action-Value Functions, and Policy Functions | ||
- Understand the Bellman Equations and Bellman Optimiality Equations for value functions and action-value functions | ||
|
||
### Lectures & Readings | ||
|
||
**Required:** | ||
|
||
- David Silver's RL Course Lecture 1 - Introduction to Reinforcement Learning ([video](https://www.youtube.com/watch?v=2pWv7GOvuf0), [slides](http://www0.cs.ucl.ac.uk/staff/d.silver/web/Teaching_files/intro_RL.pdf)) | ||
- David Silver's RL Course Lecture 2 - Markov Decision Processes ([video](https://www.youtube.com/watch?v=lfHX2hHRMVQ), [slides](http://www0.cs.ucl.ac.uk/staff/d.silver/web/Teaching_files/MDP.pdf)) | ||
|
||
**Optional:** | ||
|
||
- [Reinforcement Learning: An Introduction](https://www.dropbox.com/s/b3psxv2r0ccmf80/book2015oct.pdf) - Chapter 1: The Reinforcement Learning Problem | ||
- [Reinforcement Learning: An Introduction](https://www.dropbox.com/s/b3psxv2r0ccmf80/book2015oct.pdf) - Chapter 3: Finite Markov Decision Processes | ||
|
||
|
||
### Exercises | ||
|
||
TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## MDPs and Bellman Equations | ||
|
||
### Learning Goals | ||
|
||
- Understand what MDPs (Markov Decision Processes) are and how to interpret transition diagrams | ||
- Understand Value Functions, Action-Value Functions, and Policy Functions | ||
- Understand the Bellman Equations and Bellman Optimiality Equations for value functions and action-value functions | ||
|
||
|
||
### Lectures & Readings | ||
|
||
**Required:** | ||
|
||
- David Silver's RL Course Lecture 2 - Markov Decision Processes ([video](https://www.youtube.com/watch?v=lfHX2hHRMVQ), [slides](http://www0.cs.ucl.ac.uk/staff/d.silver/web/Teaching_files/MDP.pdf)) | ||
|
||
**Optional:** | ||
|
||
- [Reinforcement Learning: An Introduction](https://www.dropbox.com/s/b3psxv2r0ccmf80/book2015oct.pdf) - Chapter 3: Finite Markov Decision Processes | ||
|
||
|
||
### Exercises | ||
|
||
TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters