-
Notifications
You must be signed in to change notification settings - Fork 87
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
Updated documentation for string max_times #189
Conversation
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 minus the new warning message
"name": "stderr", | ||
"output_type": "stream", | ||
"text": [ | ||
"/Users/christopher.bunn/dev_envs/evalml/lib/python3.7/site-packages/sklearn/externals/joblib/__init__.py:15: DeprecationWarning: sklearn.externals.joblib is deprecated in 0.21 and will be removed in 0.23. Please import this functionality directly from joblib, which can be installed with: pip install joblib. If this warning is raised when loading pickled models, you may need to re-serialize those models with scikit-learn 0.21+.\n", |
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.
any idea why this warning is poping up now, but not before? i know @jeremyliweishih was dealing with some warning problems earlier, but this might be a different one
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.
I think it's the same problem, the order of imports changed in __init__.py
.
@christopherbunn can you move this block to the top after import warnings and see if it helps?
with warnings.catch_warnings():
warnings.simplefilter("ignore", DeprecationWarning)
import skopt
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.
Moving it up fixed it, just pushed the changes.
Codecov Report
@@ Coverage Diff @@
## master #189 +/- ##
=======================================
Coverage 96.69% 96.69%
=======================================
Files 91 91
Lines 2328 2328
=======================================
Hits 2251 2251
Misses 77 77
Continue to review full report at Codecov.
|
Added additional documentation to show updated
max_time
functionality. Made it clear that it is possible formax_time
to only be set and for it to take in a string.Resolves #177