-
Notifications
You must be signed in to change notification settings - Fork 50
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
Release v0.1.9rc3 #462
Merged
Merged
Release v0.1.9rc3 #462
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Why: There was a circular import which was causing an error in `tox -e docs`. Also, to support pluggins in plotting we need to use namespace packages. How: Remove plotting/__init__.py and rename plotting/_core.py to plotting/base.py to be coherent with other types of pluggins.
Migrate from Travis to github actions
Update test badge
There is no need to duplicate the workflows and this lead to hard to maintain duplicates.
Rework Githuh Actions into a single workflow
Closed
Codecov Report
@@ Coverage Diff @@
## master #462 +/- ##
==========================================
+ Coverage 47.52% 49.33% +1.81%
==========================================
Files 70 81 +11
Lines 13009 13922 +913
Branches 322 345 +23
==========================================
+ Hits 6183 6869 +686
- Misses 6800 7036 +236
+ Partials 26 17 -9
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Important changes
New plotting API
Plotting capability is being added to experiment clients. You can now plot the regret (curve of best objective found during optimization) with simply
experiment.plot.regret()
. You can find an example here.Web API (REST server)
A web API was added for v0.1.9 in order to support the visualization dashboard that is currently under work. See full documentation here.
Database commands
rm
&set
Command line helpers have been added to simplify the process of deleting experiments and trials as well as modifying trials in the database. See full documentation for both commands here.
Detailed list of changes
New features
orion db rm
#425)orion db set
#428)Breaking changes
Bug Fixes
Other improvements
is_broken
for ExperimentView (Enableis_broken
for ExperimentView #432)completed
field toinfo
cmd (Addcompleted
field toinfo
cmd #435)Documentation improvements
branch_from
parameter documentation inexperiment_builder.build()
(Remove outdatedbranch_from
parameter documentation inexperiment_builder.build()
#442)