From 59ab30722e7c392db785505dc41c0b12a25c97ed Mon Sep 17 00:00:00 2001 From: akellyirl Date: Sat, 21 Oct 2017 16:36:39 +0100 Subject: [PATCH] Update 15_autoencoders.ipynb PCA with a linear Autoencoder Section: The calls to numpy.random require an import to work. Added: import numpy.random as rnd --- 15_autoencoders.ipynb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/15_autoencoders.ipynb b/15_autoencoders.ipynb index 998981e..0629c1f 100644 --- a/15_autoencoders.ipynb +++ b/15_autoencoders.ipynb @@ -131,6 +131,8 @@ }, "outputs": [], "source": [ + "import numpy.random as rnd\n", + "\n", "rnd.seed(4)\n", "m = 200\n", "w1, w2 = 0.1, 0.3\n",