joon2332 / RLfrombasics

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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(바닥부터 배우는 강화학습)"


Languages

Language:Python 100.0%