From 665c2384677aa1d42a364e93f8edcfea2ee71bc5 Mon Sep 17 00:00:00 2001 From: Void01 <45259672+V0id01@users.noreply.github.com> Date: Sun, 29 Nov 2020 15:17:49 +0100 Subject: [PATCH] 04_mnist_basics: MSE lacks .sqrt() (#327) --- 04_mnist_basics.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04_mnist_basics.ipynb b/04_mnist_basics.ipynb index ae9e767..aa077ae 100644 --- a/04_mnist_basics.ipynb +++ b/04_mnist_basics.ipynb @@ -3013,7 +3013,7 @@ "metadata": {}, "outputs": [], "source": [ - "def mse(preds, targets): return ((preds-targets)**2).mean()" + "def mse(preds, targets): return ((preds-targets)**2).mean().sqrt()" ] }, {