Skip to content

provides all the codes from the book "RL from basics(바닥부터 배우는 강화학습)"

Notifications You must be signed in to change notification settings

jsyangg/RLfrombasics

 
 

Repository files navigation

RLfrombasics

"바닥부터 배우는 강화학습"에 수록된 코드를 모아놓은 레포입니다. 누군가에게 도움이 되는 책이었으면 좋겠습니다. 감사합니다.

This repo provides all the codes from the book "RLfrombasics" Hope this book is useful to somebody Thankyou :)

Typo(오타)

  1. 챕터 5 : ch5_mclearning.py 코드 97라인
    (수정 전) cum_reward = cum_reward + gamma * reward
    (수정 후) cum_reward = reward + gamma * cum_reward
    Thanks to goodjian7

  2. 챕터 3 : 67, 69 페이지 OX 퀴즈
    (수정 전) r_t+1 + gamma * r_t+1 + ...
    (수정 후) r_t+2 + gamma * r_t+2 + ...
    Thanks to namdori61

About

provides all the codes from the book "RL from basics(바닥부터 배우는 강화학습)"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%