From d2c51f593377a2ecd8b31d384fc889a8ebf9bcaf Mon Sep 17 00:00:00 2001 From: Olivier Moindrot Date: Wed, 24 May 2017 13:13:30 -0700 Subject: [PATCH] Correct path to script "download_model" `python -m baselines.deepq.experiments.download_model` becomes `python -m baselines.deepq.experiments.atari.download_model` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0bea2f9..63c9b53 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ In particular notice that once `deepq.learn` finishes training it returns `act` For some research projects it is sometimes useful to have an already trained agent handy. There's a variety of models to choose from. You can list them all by running: ```bash -python -m baselines.deepq.experiments.download_model +python -m baselines.deepq.experiments.atari.download_model ``` Once you pick a model, you can download it and visualize the learned policy. Be sure to pass `--dueling` flag to visualization script when using dueling models.