This commit is contained in:
pswietojanski 2015-10-05 09:36:51 +01:00
parent 1d4587bd42
commit 3dbb4b9b4a

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:"
]