-
Notifications
You must be signed in to change notification settings - Fork 534
Add the detailed info for parameter 'verbose' #1435
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
base: main
Are you sure you want to change the base?
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.
Thanks for the PR, @murunlin. Could you add the logging level when verbose = 4, 5 and more? And make the description more concise. Thanks.
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.
Why only (shows ERROR + CRITICAL)
and (all messages)
? I suggest remove both of them.
As I've tested, verbose 5 will not show all messages, but verbose > 5 will do. Please add info of verbose > 5.
Thanks.
@@ -40,7 +40,7 @@ | |||
"xgboost>=0.90,<3.0.0", | |||
"scipy>=1.4.1", | |||
"pandas>=1.1.4", | |||
"scikit-learn>=1.0.0", | |||
"scikit-learn==1.3.1", |
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.
This is not necessary and we should not stick to any specific version.
@@ -57,7 +57,7 @@ | |||
"scipy>=1.4.1", | |||
"pandas>=1.1.4,<2.0.0; python_version<'3.10'", | |||
"pandas>=1.1.4; python_version>='3.10'", | |||
"scikit-learn>=1.0.0", | |||
"scikit-learn==1.3.1", |
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.
This is not necessary and we should not stick to any specific version.
@@ -85,7 +85,7 @@ jobs: | |||
- name: Test with pytest | |||
if: matrix.python-version != '3.10' | |||
run: | | |||
pytest test/ | |||
pytest test/ --ignore=test/automl/test_mlflow.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.
We should not skip the test.
Why are these changes needed?
Add the detailed explanation for parameter 'verbose', which can control the logger level such as ERROR, WARNING messages.
Related issue number
Related to #1428
Checks