diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-11-25 22:19:57 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-11-25 22:19:57 +0100 |
| commit | e1fa31bfd6a938341c3a8a63f238d0952cf4b429 (patch) | |
| tree | c61394d69022c026321a28cc0cf12c99208605c1 /notebooks/config | |
| parent | ee3d0d98e19f1d8177d85af1866fd0ee431fe9ea (diff) | |
| parent | 0529d4cd1618016319e995c37aa118bf8c2d501b (diff) | |
merge
Diffstat (limited to 'notebooks/config')
| -rw-r--r-- | notebooks/config/__init__.py | 0 | ||||
| -rw-r--r-- | notebooks/config/config.py | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/notebooks/config/__init__.py b/notebooks/config/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/notebooks/config/__init__.py diff --git a/notebooks/config/config.py b/notebooks/config/config.py new file mode 100644 index 00000000..89cdca8c --- /dev/null +++ b/notebooks/config/config.py @@ -0,0 +1,11 @@ +import os +import os.path as osp + +# Setup directory paths +project_root = os.path.dirname(os.path.realpath('')) +DATA_STORE = osp.join(project_root,'data_bodega') +OUTPUT_DIR = osp.join(DATA_STORE,'output') + +# Asset directories +IMAGES_DIR = osp.join(DATA_STORE,'images') +MODELS_DIR = osp.join(DATA_STORE,'models')
\ No newline at end of file |
