From 8fe07cf0fb35d67e5a0a8260771ab290e06c173c Mon Sep 17 00:00:00 2001 From: udlbook <110402648+udlbook@users.noreply.github.com> Date: Thu, 18 Apr 2024 16:08:28 -0400 Subject: [PATCH] Created using Colab --- Notebooks/Chap11/11_1_Shattered_Gradients.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Notebooks/Chap11/11_1_Shattered_Gradients.ipynb b/Notebooks/Chap11/11_1_Shattered_Gradients.ipynb index 6ef827d..bf6ae98 100644 --- a/Notebooks/Chap11/11_1_Shattered_Gradients.ipynb +++ b/Notebooks/Chap11/11_1_Shattered_Gradients.ipynb @@ -4,7 +4,7 @@ "metadata": { "colab": { "provenance": [], - "authorship_tag": "ABX9TyMLKg5ZmXqojcVrZD5BGm9g", + "authorship_tag": "ABX9TyP3VmRg51U+7NCfSYjRRrgv", "include_colab_link": true }, "kernelspec": { @@ -267,8 +267,8 @@ " fig,ax = plt.subplots()\n", " ax.plot(np.squeeze(x_in), np.squeeze(dydx), 'b-')\n", " ax.set_xlim(-2,2)\n", - " ax.set_xlabel('Input, $x$')\n", - " ax.set_ylabel('Gradient, $dy/dx$')\n", + " ax.set_xlabel(r'Input, $x$')\n", + " ax.set_ylabel(r'Gradient, $dy/dx$')\n", " ax.set_title('No layers = %d'%(K))\n", " plt.show()" ],