From 60d8923b1693d6656287ad545eb60c5c30460cf5 Mon Sep 17 00:00:00 2001 From: udlbook <110402648+udlbook@users.noreply.github.com> Date: Tue, 25 Oct 2022 11:51:47 +0100 Subject: [PATCH] Created using Colaboratory --- CM20315_Loss.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CM20315_Loss.ipynb b/CM20315_Loss.ipynb index 306abc7..8a61aab 100644 --- a/CM20315_Loss.ipynb +++ b/CM20315_Loss.ipynb @@ -5,7 +5,7 @@ "colab": { "provenance": [], "collapsed_sections": [], - "authorship_tag": "ABX9TyMrfCCH1ll/mV1nl3jPkkXz", + "authorship_tag": "ABX9TyNWvWC97VuIGwu4VTE1XbO6", "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", + " # Bottom line of equation 5.4 in the notes\n", " # You will need np.sum(), np.log()\n", " # Replace the line below\n", " nll = 0\n",