Merged
Conversation
* [feat] Support statistics print by adding results manager object * [refactor] Make SearchResults extract run_history at __init__ Since the search results should not be kept in eternally, I made this class to take run_history in __init__ so that we can implicitly call extraction inside. From this change, the call of extraction from outside is not recommended. However, you can still call it from outside and to prevent mixup of the environment, self.clear() will be called. * [fix] Separate those changes into PR#336 * [fix] Fix so that test_loss includes all the metrics * [enhance] Strengthen the test for sprint and SearchResults * [fix] Fix an issue in documentation * [enhance] Increase the coverage * [refactor] Separate the test for results_manager to organize the structure * [test] Add the test for get_incumbent_Result * [test] Remove the previous test_get_incumbent and see the coverage * [fix] [test] Fix reversion of metric and strengthen the test cases * [fix] Fix flake8 issues and increase coverage * [fix] Address Ravin's comments * [enhance] Increase the coverage * [fix] Fix a flake8 issu
* Create release workflow and CITATION.cff and update README, setup.py * fix bug in pypy token * fix documentation formatting * TODO for docker image * accept suggestions from shuhei * add further options for disable_file_output documentation * remove from release.yml
* [doc] Add workflow of the AutoPytorch * [doc] Address Ravin's comment
* set verbose=False in catboost * fix flake
ravinkohli
commented
Nov 22, 2021
Codecov Report
@@ Coverage Diff @@
## master #341 +/- ##
==========================================
+ Coverage 81.82% 82.11% +0.28%
==========================================
Files 152 153 +1
Lines 8677 8812 +135
Branches 1325 1341 +16
==========================================
+ Hits 7100 7236 +136
+ Misses 1111 1107 -4
- Partials 466 469 +3
Continue to review full report at Codecov.
|
* fix formatting in docs * Update examples/40_advanced/example_resampling_strategy.py
Contributor
eddiebergman
left a comment
There was a problem hiding this comment.
Seems mostly okay, just one comment on the install requirements and a stray file from testing.
ravinkohli
commented
Nov 23, 2021
eddiebergman
approved these changes
Nov 23, 2021
|
Hello, I'm facing an error while running example_visualization.py with the message "TypeError: init() got an unexpected keyword argument 'multi_objectives' " |
Contributor
Author
|
@atifrizwan91 Could you create an issue and explain your environment as well as the version of |
This file contains hidden or 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
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.
This PR includes changes from
autoPyTorchComponentandautoPyTorchChoiceResultManagerto parse results fromapi.run_history.r2.AutoPyTorchto theREADME.mdfile.README.mdwith a minimal example, updatessetup.pyand addsrelease.ymlgithub action to publish tagged commits to PyPI.