reinforcement_learning_course_materials
reinforcement_learning_course_materials copied to clipboard
Lecture notes, tutorial tasks including solutions as well as online videos for the reinforcement learning course hosted by Paderborn University
Reinforcement Learning Course Materials
Lecture notes, tutorial tasks including solutions as well as online videos for the reinforcement learning course hosted by Paderborn University. Source code for the entire course material is open and everyone is cordially invited to use it for self-learning (students) or to set up your own course (lecturers).
Lecture Content
- Introduction to Reinforcement Learning
- Markov Decision Processes
- Dynamic Programming
- Monte Carlo Methods
- Temporal-Difference Learning
- n-Step Bootstrapping
- Planning and Learning with Tabular Methods
- Function Approximation with Supervised Learning
- On-Policy Prediction with Function Approximation
- Value-Based Control with Function Approximation
- Eligibility Traces
- Policy Gradient Methods
- Further Contemporary RL Algorithms (DDPG, TD3, TRPO, PPO)
- Summary of Part One: Reinforcement Learning in Finite State and Action Spaces
- Summary of Part Two: Course Completion and Outlook
- Full course slides
Exercise Content
- Basics of Python for Scientific Computing
- Tutorial video
- Tutorial template
- Tutorial solution
- Manually Solving Basic Markov Chain, Reward and Decision Problems
- Tutorial video
- Tutorial template
- Tutorial solution
- The Beer-Bachelor and Dynamic Programming (the Shortest Beer Problem)
- Tutorial video
- Tutorial template
- Tutorial solution
- Drive Through the Race Track with Monte Carlo Learning
- Tutorial video
- Tutorial template
- Tutorial solution
- Drive even Faster Using Temporal-Difference Learning
- Tutorial video
- Tutorial template
- Tutorial solution
- Stabilizing the Inverted Pendulum by Tabular n-Step Methods
- Tutorial video
- Tutorial template
- Tutorial solution
- Boosting the Inverted Pendulum by Integrating Learning & Planning (Dyna Framework)
- Tutorial video
- Tutorial template
- Tutorial solution
- Predicting the Operating Behavior of a Real Electric Drive Systems with Supervised Learning
- Tutorial video
- Tutorial template
- Tutorial solution
- Evaluate the Performance of Given Agents in the Mountain Car Problem Using Function Approximation
- Tutorial video
- Tutorial template
- Tutorial solution
- Escape from the Mountain Car Valley Using Semi-Gradient Sarsa & Least Square Policy Iteration
- Tutorial video
- Tutorial template
- Tutorial solution
- Improve the Value-Based Mount Car Solution using Sarsa(Lambda)
- Tutorial video
- Tutorial template
- Tutorial solution
- Landing on the Moon with REINFORCE and Actor-Critic Methods
- Tutorial video
- Tutorial template
- Tutorial solution
- Shoot to the moon with DDPG & PPO
- Tutorial video
- Tutorial template
- Tutorial solution
Citation
Please use the following BibTeX entry for citing us:
@Misc{KSWW2020,
author = {Wilhelm Kirchgässner and Maximilian Schenke and Oliver Wallscheid and Daniel Weber},
note = {Paderborn University},
title = {Reinforcement Learning Course Material},
year = {2020},
url = {https://github.com/upb-lea/reinforcement_learning_course_materials},
}
Contributions
We highly appreciate any feedback and input to the course material e.g.
- typos or content-related discussions (please raise an issue)
- adding new contents (please provide a pull request)
If you like to contribute to the repo to a larger extent, please do not hesitate to contact us directly.
Credits
The lecture notes are inspired by
- Richard S. Sutton, Andrew G. Barto, 'Reinforcement Learning: An Introduction' Second Edition MIT Press, Cambridge, MA, 2018
- David Silver, UCL Course on Reinforcement Learning, 2015
The tutorials are partly using pre-packed environments from