Skip to content

shaunstanislauslau/60_Days_RL_Challenge

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 

Repository files navigation


I designed this Challenge for you and me: Learn Deep Reinforcement Learning in depth in 60 days!!

You heard about the amazing results achieved by Deepmind with AlphaGo Zero and by OpenAI in Dota 2! Don't you want to know how they work? This is the right opportunity for you and me to finally learn Deep RL and use it on new exciting projects.

The ultimate aim is to use these general-purpose technologies and apply them to all sorts of important real world problems. Demis Hassabis


This repository wants to guide you through the Deep Reinforcement Learning algorithms, from the most basic ones to the highly advanced AlphaGo Zero. You will find the main topics organized by week and the resources suggested to learn them. Also, every week I will provide practical examples implemented in python to help you better digest the theory. You are highly encouraged to modify and play with them!


This is my first project of this kind, so please, if you have any idea, suggestion or improvement contact me at andrea.lonza@gmail.com.

During the whole challenge, I will update continuously this repository.. so stay tuned! #60DaysRLChallenge

Follow me Twitter Follow GitHub followers

Projects (Yet to decide)

  • Q-learning
  • DQN
  • AC2
  • ES
  • AlphaGo Zero

Week 1 - Introduction

Week 2 - RL Basics: MDP, Dynamic Programming and Model-Free Control

Those who cannot rember the part are condomned to repeat it - George Santayana

This week, we will learn about the basic blocks of reinforcement learning, starting from the definition of the problem all the way through the estimation and optimization of the functions that are used to express the quality of a policy or state.


Theoretical material

  • Markov Decision Process - RL by David Silver

    Formalizing RL problem using MDP

    • Markov Processes
    • Markov Decision Processes
  • Planning by Dynamic Programming - RL by David Silver

    How to solve known MDP

    • Policy iteration
    • Value iteration
  • Model-Free Prediction - RL by David Silver

    Estimate the value function of unknown MDP

    • Monte Carlo Learning
    • Temporal Difference Learning
    • TD(λ)
  • Model-Free Control - RL by David Silver

    Optimise the value function of an unknown MDP

    • Ɛ-greedy policy iteration
    • GLIE Monte Carlo Search
    • SARSA
    • Importance Sampling

Project of the Week

Q-learning applied to FrozenLake. For exercise, you can solve the game using SARSA or implement Q-learning by yourself. In the former case, only few changes are needed.


To know more

Week 3 - Value Function Approximation and DQN

Week 4 - A2C and A3C

Week 5 - RL in continous space - TRPO/PPO

Week 6 - Evolution Strategies and Genetic Algorithms

Week 7 - I2A

Week 8 - AlphaGoZero + Bonus

Last 4 days - Review + sharing

Best RL papers

Best resources

📺 Deep Reinforcement Learning - UC Berkeley class by Levine, check here their site.

📺 Reinforcement Learning course - by David Silver, DeepMind. Great introductory lectures by Silver, a lead researcher on AlphaGo. They follow the book Reinforcement Learning by Sutton & Barto.

📓 Reinforcement Learning: An Introduction - by Sutton & Barto. The "Bible" of reinforcement learning. Here you can find the PDF draft of the second version.

Additional resources

📚 Awesome Reinforcement Learning. A curated list of resources dedicated to reinforcement learning

About

Learn Deep Reinforcement Learning in depth in 60 days

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%