Skip to content

jasoon-chen/handwrittenNotes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 

Repository files navigation

This repository ccontains a bunch of notes and code that I have implemented through self-learning. Most of these resources are either through a free course online or through a textbook that matched the content that I'm interested in.

Contents

Reinforcement Learning Code (RLCode)

Dynamic Programming

Monte-Carlo Methods

Temporal Difference

Tabular Methods

FrozenLake is a "game" environment from Gym. This is part of there Toy Text environments, in which they have multiple other environments such as MuJoCo, Atari, Classic Control, etc. There is not a lot of detailed documentation and example, but this is from there official website.

MountainCar is a "game" environment from Gym. This is part of there Classic Control environments, in which they have multiple other environments such as MuJoCo, Atari, Classic Control, etc. There is not a lot of detailed documentation and example, but this is from there official website.

To run the code on your own computer, you need to install GymLibrary. There really isn't any good tutorial on how to run this except for this one that I found on here. I'm running all of the code on conda version 24.5.0 with python version 3.9.19.

The psuedo-code for all of the RL Code is from An introduction to Reinforcement Learning, Sutton and Barto, Second Edition