diff options
| author | Adam Harvey <adam@ahprojects.com> | 2018-11-19 12:46:34 +0100 |
|---|---|---|
| committer | Adam Harvey <adam@ahprojects.com> | 2018-11-19 12:46:34 +0100 |
| commit | 869d63677ee1d508fc3ebc14c0994a2813b85272 (patch) | |
| tree | aff309f8e58df263606da74277044bfcb0a11ff1 /megapixels/notebooks/config/config.py | |
| parent | 8c52d20132be81121d1c789951c2571bfa667119 (diff) | |
working on youtube pose
Diffstat (limited to 'megapixels/notebooks/config/config.py')
| -rw-r--r-- | megapixels/notebooks/config/config.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/megapixels/notebooks/config/config.py b/megapixels/notebooks/config/config.py new file mode 100644 index 00000000..89cdca8c --- /dev/null +++ b/megapixels/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 |
