From 63a8c5b0f3a42814756667a988c134947b6dc2e3 Mon Sep 17 00:00:00 2001 From: Eric Hambro <eric.hambro@gmail.com> Date: Mon, 7 Jun 2021 05:44:48 -0700 Subject: [PATCH] Add warning for no render on GitLab. --- notebooks/NetHackTutorial.ipynb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/notebooks/NetHackTutorial.ipynb b/notebooks/NetHackTutorial.ipynb index 7168686..d5b5f41 100644 --- a/notebooks/NetHackTutorial.ipynb +++ b/notebooks/NetHackTutorial.ipynb @@ -230,6 +230,8 @@ "env = gym.make(\"NetHackChallenge-v0\", savedir=None) # (Don't save a recording of the episode)\n", "env.reset() # each reset generates a new dungeon\n", "env.step(1) # move agent '@' north\n", + "\n", + "## WARNING: WILL NOT RENDER ON GITLAB (run locally)\n", "env.render()\n" ] }, @@ -527,7 +529,7 @@ "\n", "In the original NLE paper, the agent architecture was as follows:\n", "\n", - "\n", + "\n", "\n", "\n", "As can be seen, the model utilized both an agent centric view and a global view, which are both processed with convolutional neural network (CNN) layers. In addition, the blstats are processed with an MLP. Finally, the embeddings are passed into an LSTM to deal with partial observability. \n", -- GitLab