This commit is contained in:
johnjim0816
2022-11-14 21:35:33 +08:00
3 changed files with 9 additions and 4 deletions

View File

@@ -429,14 +429,12 @@ OpenAI是一家非营利性的人工智能研究公司其公布了非常多
<div align=center>图 1.24 OpenAI 的 Gym 库</div>
我们可以通过 pip 来安装 Gym库:
我们可以通过 pip 来安装 Gym 库,由于 Gym 库 0.26.0 及其之后的版本对之前的代码不兼容,所以我们安装 0.26.0 之前的 Gym比如 0.25.2。
```bash
pip install gym
pip install gym==0.25.2
```
在 Python 环境中导入Gym库如果不报错就可以认为 Gym 库安装成功。

View File

@@ -8,6 +8,12 @@
* 杨毅远:清华大学硕士在读 → 清华大学硕士
* 江季:北京大学硕士在读 → 北京大学硕士
* 10页图1.11上面一段第2行图1.12左边的智能体 → 图1.11左边的智能体
* 23页图1.23下面一段:我们可以通过 pip 来安装 Gym 库。 → 我们可以通过 pip 来安装 Gym 库,由于 Gym 库 0.26.0 及其之后的版本对之前的代码不兼容,所以我们安装 0.26.0 之前的 Gym比如 0.25.2。
```bash
pip install gym==0.25.2
```
* 35页的图2.2 和 41页的图2.5a添加从 $s_1$ 到 $s_4$ 的箭头,替换成下图:
![](res/Markov_chain.png ':size=350')

1
papers/readme.md Normal file
View File

@@ -0,0 +1 @@