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
main
akellyirl 2017-10-21 16:36:39 +01:00 committed by GitHub
parent 7d7ccce9d3
commit 59ab30722e
1 changed files with 2 additions and 0 deletions

View File

@ -131,6 +131,8 @@
}, },
"outputs": [], "outputs": [],
"source": [ "source": [
"import numpy.random as rnd\n",
"\n",
"rnd.seed(4)\n", "rnd.seed(4)\n",
"m = 200\n", "m = 200\n",
"w1, w2 = 0.1, 0.3\n", "w1, w2 = 0.1, 0.3\n",