Skip to content

Commit

Permalink
re
Browse files Browse the repository at this point in the history
  • Loading branch information
tychovdo committed Jun 15, 2016
1 parent 23736d8 commit 33c5944
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ $ python3 pacman.py -p PacmanDQN -n 4000 -x 3000 -l smallGrid
```
### Parameters

Parameters can be found in the `paramters` dictionary in `pacmanDQN_Agents.py`.__
__
Models are saved as "checkpoint" files in the `\saves` directory.__
Load and save filenames can be set using the `load_file` and `save_file` parameters.__
__
Episodes before training starts: `train_start`__
Size of replay memory batch size: `batch_size`__
Amount of experience tuples in replay memory: `mem_size`__
Discount rate (gamma value): `discount`__
Learning rate: `lr`__
RMS Prop decay rate: `rms_decay`__
RMS Prop epsilon value: `rms_eps`__
__
Exploration/Exploitation (ε-greedy):__
Epsilon start value: `eps`__
Epsilon final value: `eps_final`__
Number of steps between start and final epsilon value (linear): `eps_step`__
Parameters can be found in the `paramters` dictionary in `pacmanDQN_Agents.py`.

Models are saved as "checkpoint" files in the `\saves` directory.
Load and save filenames can be set using the `load_file` and `save_file` parameters.

Episodes before training starts: `train_start`
Size of replay memory batch size: `batch_size`
Amount of experience tuples in replay memory: `mem_size`
Discount rate (gamma value): `discount`
Learning rate: `lr`
RMS Prop decay rate: `rms_decay`
RMS Prop epsilon value: `rms_eps`

Exploration/Exploitation (ε-greedy):
Epsilon start value: `eps`
Epsilon final value: `eps_final`
Number of steps between start and final epsilon value (linear): `eps_step`


## Requirements
Expand Down

0 comments on commit 33c5944

Please sign in to comment.