-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change default path for entities #533
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #533 +/- ##
==========================================
Coverage ? 71.03%
==========================================
Files ? 65
Lines ? 4544
Branches ? 0
==========================================
Hits ? 3228
Misses ? 1316
Partials ? 0
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking pretty good. See the above comments for specific places but overall here are the items to address:
- Try to avoid mixing using os.path and pathlib where possible
- See if you can figure out a way to monkeypatch exp.start so that you can avoid actually having to run the database and other entities
One task to address that's outside of the inline comments:
- Go through the rest of the tests and make sure that we're not unnecessarily setting their paths anymore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for addressing my previous comments. I had a handful of minor points this time around, but nothing substantive. Good job!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Thanks for improvements!
This PR makes changes to the default path for SS entities. New default path is `exp_path/entity_name/`. A path argument has also been added to create_ensemble and create_model. [ reviewed by @ashao @mellis13 ] [ committed by @amandarichardsonn ]
This PR makes changes to the default path for SS entities. New default path is `exp_path/entity_name/`. A path argument has also been added to create_ensemble and create_model. [ reviewed by @ashao @mellis13 ] [ committed by @amandarichardsonn ]
This PR makes changes to the default path for SS entities. New default path is
exp_path/entity_name/
.