Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Panchenko committed Jun 17, 2024
1 parent c3015e1 commit a188461
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/02_notebooks/L5_linear_sweep.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@
"\n",
" plt.xlabel(\"Step\")\n",
" plt.ylabel(\"Reward\")\n",
" \n",
"\n",
" plt.legend([\"Reward\", \"Terminated\"])\n",
" \n",
"\n",
" if show:\n",
" plt.show()\n"
" plt.show()"
]
},
{
Expand Down Expand Up @@ -163,7 +163,7 @@
"source": [
"env_rollout = walk_through_env(env, 100)\n",
"\n",
"plot_rollout_rewards(env_rollout)\n"
"plot_rollout_rewards(env_rollout)"
]
},
{
Expand Down Expand Up @@ -209,7 +209,9 @@
"metadata": {},
"outputs": [],
"source": [
"projected_env_rollout = walk_through_env(projected_env, 100, render_title=\"Projected labelmap slice\")\n",
"projected_env_rollout = walk_through_env(\n",
" projected_env, 100, render_title=\"Projected labelmap slice\",\n",
")\n",
"plot_rollout_rewards(projected_env_rollout)"
]
},
Expand Down

0 comments on commit a188461

Please sign in to comment.