From 8716ef0ae2561b2ac0f8c0c116afe80492142cee Mon Sep 17 00:00:00 2001 From: Akiomi KAMAKURA Date: Fri, 30 Nov 2018 01:09:44 +0900 Subject: [PATCH] Fix test module paths --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e273241..f40d2243 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ You can test whether the installation was successful by running the following: ``` cd dopamine export PYTHONPATH=${PYTHONPATH}:. -python tests/atari_init_test.py +python tests/dopamine/atari_init_test.py ``` The entry point to the standard Atari 2600 experiment is @@ -197,7 +197,7 @@ zlib (see "Install via source" above). From the root directory, tests can be run with a command such as: ``` -python -um tests.agents.rainbow.rainbow_agent_test +python -um tests.dopamine.agents.rainbow.rainbow_agent_test ``` ### References