Skip to content

Latest commit

 

History

History
107 lines (76 loc) · 6.07 KB

README.md

File metadata and controls

107 lines (76 loc) · 6.07 KB

Overview

This repository provides code, exercises and solutions for popular Reinforcement Learning algorithms. These are meant to serve as a learning tool to complement the theoretical materials from

Each folder in corresponds to one or more chapters of the above textbook and/or course. In addition to exercises and solution, each folder also contains a list of learning goals, a brief concept summary, and links to the relevant readings.

All code is written in Python 3 and uses RL environments from OpenAI Gym. Advanced techniques use Tensorflow for neural network implementations.

Table of Contents

List of Implemented Algorithms

Resources

Textbooks:

Classes:

Talks/Tutorials:

Other Projects:

Selected Papers:

教程

https://gymnasium.farama.org/

环境搭建

brew install swig

windows 需要把 swig.exe 所在目录加入环境变量

conda create -n RL_GYM python=3.11.5 conda activate RL_GYM pip install "gymnasium[all]" pip install py-color-log