Merge pull request #13 from pswietojanski/master

2nd lab
This commit is contained in:
Pawel Swietojanski 2015-10-05 09:37:49 +01:00
commit d2f20c074d

View File

@ -140,7 +140,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Note on random number generators (could move it somewhere else)\n",
"### Note on random number generators (general note)\n",
"\n",
"It is generally a good practice (for machine learning applications **not** cryptography!) to seed a pseudo-random number generator once at the beginning of the experiment, and use it later through the code where necesarry. This allows to avoid hard to reproduce scenariors where a particular action happens only for a particular sequence of numbers (which you cannot reproduce easily due to unknown random seeds sequence on the way!). As such, within this course we are going use a single random generator object. For instance, the one similar to the below:"
]