From 29d93cfba356c39b7905acef4da4201b9dccd8d9 Mon Sep 17 00:00:00 2001 From: Adam Stelmaszczyk Date: Fri, 8 Jun 2018 19:24:48 +0200 Subject: [PATCH] Update README.md --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a5e29c..b34f88c 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,24 @@ TensorFlow & Keras implementation of DQN. There is an automatic build on Travis which [does the same](https://github.com/AdamStelmaszczyk/rl-tutorial/blob/master/.travis.yml). +## Run + +`python run.py --help` + +``` +usage: run.py [-h] [--eval] [--model MODEL] [--name NAME] [--seed SEED] + [--test] [--view] + +optional arguments: + -h, --help show this help message and exit + --eval run evaluation with log only (default: False) + --model MODEL model filename to load (default: None) + --name NAME name for saved files (default: 06-08-19-23) + --seed SEED pseudo random number generator seed (default: None) + --test run tests (default: False) + --view view the model playing the game (default: False) +``` + ## Uninstall 1. Deactivate conda environment: `source deactivate`. @@ -21,4 +39,4 @@ There is an automatic build on Travis which [does the same](https://github.com/A ## Links - MountainCar description: https://github.com/openai/gym/wiki/MountainCar-v0 -- MountainCar source code: https://github.com/openai/gym/blob/4c460ba6c8959dd8e0a03b13a1ca817da6d4074f/gym/envs/classic_control/mountain_car.py \ No newline at end of file +- MountainCar source code: https://github.com/openai/gym/blob/4c460ba6c8959dd8e0a03b13a1ca817da6d4074f/gym/envs/classic_control/mountain_car.py