From e412e965cad57a582937ff1cee7b1e1309af9dc4 Mon Sep 17 00:00:00 2001 From: Pietro Monticone <38562595+pitmonticone@users.noreply.github.com> Date: Mon, 30 Oct 2023 17:52:29 +0100 Subject: [PATCH] Update 6_3_Stochastic_Gradient_Descent.ipynb --- Notebooks/Chap06/6_3_Stochastic_Gradient_Descent.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notebooks/Chap06/6_3_Stochastic_Gradient_Descent.ipynb b/Notebooks/Chap06/6_3_Stochastic_Gradient_Descent.ipynb index 1ad3a89..282039e 100644 --- a/Notebooks/Chap06/6_3_Stochastic_Gradient_Descent.ipynb +++ b/Notebooks/Chap06/6_3_Stochastic_Gradient_Descent.ipynb @@ -123,7 +123,7 @@ { "cell_type": "code", "source": [ - "# Initialize the parmaeters and draw the model\n", + "# Initialize the parameters and draw the model\n", "phi = np.zeros((2,1))\n", "phi[0] = -5 # Horizontal offset\n", "phi[1] = 25 # Frequency\n",