Mercurial > pylearn
view datasets/config.py @ 528:cfe3f62a08cb
bugfix, outputs needed to be in a list in the past, not anymore.
author | Frederic Bastien <bastienf@iro.umontreal.ca> |
---|---|
date | Mon, 17 Nov 2008 13:17:00 -0500 |
parents | 74b3e65f5f24 |
children |
line wrap: on
line source
"""Configuration options for datasets Especially, the locations of data files. """ import os def env_get(key, default): return default if os.getenv(key) is None else os.getenv(key) def data_root(): return env_get('PYLEARN_DATA_ROOT', '/u/bergstrj/pub/data/')