Skip to content

Commit

Permalink
Don't use visdom in the main example
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrusu authored Oct 16, 2020
1 parent 3caa770 commit 52759fd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ env = gym.make(
"smarts.env:hiway-v0",
scenarios=["scenarios/loop"],
agent_specs=agent_specs,
visdom=True,
)

agents = {
Expand Down Expand Up @@ -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,
)
```

<!--
### Interfacing w/ PyMARL and malib
Expand Down

0 comments on commit 52759fd

Please sign in to comment.