-
Notifications
You must be signed in to change notification settings - Fork 289
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
Final changes for v0.1.0 #341
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
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
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.
Seems mostly okay, just one comment on the install requirements and a stray file from testing.
Hello, I'm facing an error while running example_visualization.py with the message "TypeError: init() got an unexpected keyword argument 'multi_objectives' " |
@atifrizwan91 Could you create an issue and explain your environment as well as the version of |
This PR includes changes from
autoPyTorchComponent
andautoPyTorchChoice
ResultManager
to parse results fromapi.run_history
.r2
.AutoPyTorch
to theREADME.md
file.README.md
with a minimal example, updatessetup.py
and addsrelease.yml
github action to publish tagged commits to PyPI.