Skip to content

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

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions flaml/automl/automl.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@ def custom_metric(
train_time_limit: A float of the training time constraint in seconds.
verbose: int, default=3 | Controls the verbosity, higher means more
messages.
verbose=1: logger level = ERROR, CRITICAL + ERROR log messages will be shown.
verbose=2: logger level = WARNING, there will be CRITICAL + ERROR + WARNING log messages.
verbose=3: logger level = INFO, add INFO messages to the above.
retrain_full: bool or str, default=True | whether to retrain the
selected model on the full training data when using holdout.
True - retrain only after search finishes; False - no retraining;
Expand Down Expand Up @@ -1347,6 +1350,9 @@ def custom_metric(
for training data.
verbose: int, default=3 | Controls the verbosity, higher means more
messages.
verbose=1: logger level = ERROR, CRITICAL + ERROR log messages will be shown.
verbose=2: logger level = WARNING, there will be CRITICAL + ERROR + WARNING log messages.
verbose=3: logger level = INFO, add INFO messages to the above.
retrain_full: bool or str, default=True | whether to retrain the
selected model on the full training data when using holdout.
True - retrain only after search finishes; False - no retraining;
Expand Down
Loading