Skip to content

Instantly share code, notes, and snippets.

@halecakir
halecakir / aNote.py
Created April 20, 2020 20:35 — forked from wasdee/aNote.py
[Reproducibility In Data Science] #Python
# cite: https://www.youtube.com/watch?v=Ys8ofBeR2kA
# Run python or jupyter with
# $ PYTHONHASHSEED=0 jupyter notebook
# $ PYTHONHASHSEED=0 python code.py
# check
if os.environ.get("PYTHONHASHSEED") != "0":
raise Exception("You must set PYTHONHASHSEED=0 when starting the Jupyter server to get reproducible results.")