Anyone have any interesting organizational schemes...
# questions
a
Anyone have any interesting organizational schemes for subdirectories under
notebooks
?
👀 1
jupyter 1
i
I try to keep the same structure as my pipelines folder So if I have a
model_inference
pipeline I'll usually have a directory named the same Or at least a single notebook named the same
a
Yeah that makes sense
👍 1
One thought I've been playing around with is kinda emulating the
conf
folder, in a way.. but instead of different environment , different notebook contexts related to collaborating with other team members. So something like:
notebooks/drafts
<- entirely local, .gitignored so that they dont push to repo
notebooks/review
<- so they can be peer reviewed
notebooks/published
<- completed, peer-reviewed notebooks Then basically move the notebooks around as they progress. Keeps the noisy all-code-cell prototyping notebooks away from the more refined reports.
i
Yeah! Whatever works for your team What I have above is just personal preference That sounds good though