diff --git a/Notebooks/Chap05/5_1_Least_Squares_Loss.ipynb b/Notebooks/Chap05/5_1_Least_Squares_Loss.ipynb index 5cf90cc..f7e6a5e 100644 --- a/Notebooks/Chap05/5_1_Least_Squares_Loss.ipynb +++ b/Notebooks/Chap05/5_1_Least_Squares_Loss.ipynb @@ -4,7 +4,7 @@ "metadata": { "colab": { "provenance": [], - "authorship_tag": "ABX9TyNkBMOVt5gO7Awn9JMn4N8Z", + "authorship_tag": "ABX9TyPX88BLalmJTle9GSAZMJcz", "include_colab_link": true }, "kernelspec": { @@ -307,7 +307,7 @@ "# Return the negative log likelihood of the data under the model\n", "def compute_negative_log_likelihood(y_train, mu, sigma):\n", " # TODO -- compute the likelihood of the data -- don't use the likelihood function above -- compute the negative sum of the log probabilities\n", - " # Bottom line of equation 5.3 in the notes\n", + " # Equation 5.4 in the notes\n", " # You will need np.sum(), np.log()\n", " # Replace the line below\n", " nll = 0\n",