whisk-ml / whisk

whisk is a data science project framework that makes collaboration, reproducibility, and deployment "just work".
https://docs.whisk-ml.org
MIT License
10 stars 0 forks source link

Adds whisk.data_dir and whisk.artfacts_dir attributes #4

Closed itsderek23 closed 4 years ago

itsderek23 commented 4 years ago

/cc @AdamBarnhard

This adds easier access to two key directories: the data and artifacts directories within a whisk project:

import whisk
whisk.data_dir
whisk.artifacts_dir

Also, since these directories are now accessed under the whisk module vs. the unique project-named module, we can refer to these directories in a more universal fashion in tutorials.

The getting started notebook is updated w/these directories.