Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lilianweng committed Jun 19, 2018
1 parent f327f88 commit d14cd7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ logs/*
figs/*
**/*.pyc
**/*.egg-info
*~
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ If you are interested in playing with Atari games or other advanced packages in

(4) Clone the code repo and install the requirements.
```
git clone [email protected]:lilianweng/playground-drl.git
cd playground-drl
git clone [email protected]:lilianweng/deep-reinforcement-learning-gym.git
cd deep-reinforcement-learning-gym
pip install -e . # install the “playground” project.
pip install -r requirements.txt # install required packages.
```
Expand All @@ -54,7 +54,7 @@ cd playground
python learn.py configs/data/reinforce-cartpole-v1.json
```

During training, three folders will be created in the root `playground-drl/`: `logs`, `checkpoints` and `figs`. Because the env is wrapped by `gym.wrappers.Monitor`, the gym training log is written into `/tmp/` in the meantime. Feel free to comment that out in `playground.configs.manager.ConfigManager` if you are not a fan of that.
During training, three folders will be created in the root directory: `logs`, `checkpoints` and `figs`. Because the env is wrapped by `gym.wrappers.Monitor`, the gym training log is written into `/tmp/` in the meantime. Feel free to comment that out in `playground.configs.manager.ConfigManager` if you are not a fan of that.

Meanwhile, you can start the tensorboard,
```bash
Expand Down

0 comments on commit d14cd7d

Please sign in to comment.