From 52759fd14f4589b74e9dc0b95739a2f793f8ffb3 Mon Sep 17 00:00:00 2001 From: David Rusu Date: Thu, 15 Oct 2020 22:22:16 -0400 Subject: [PATCH] Don't use visdom in the main example --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aaa01a0c90..418f4d9bf6 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,6 @@ env = gym.make( "smarts.env:hiway-v0", scenarios=["scenarios/loop"], agent_specs=agent_specs, - visdom=True, ) agents = { @@ -175,6 +174,17 @@ visdom # Open the printed URL in your browser ``` +And in your experiment, start your environment with `visdom=True` + +```python +env = gym.make( + "smarts.env:hiway-v0", + scenarios=["scenarios/loop"], + agent_specs=agent_specs, + visdom=True, +) +``` +