'verbose' argument in scikit-learn

32,087

Solution 1

Higher integers map to higher verbosity as the docstring says. You can set verbosity=100 but I'm pretty sure it will be the same as verbosity=10. If you are looking for a list of what exactly is printed for each estimator for each integer, you have to look into the source. I think most estimators only have two or three levels of verbosity, I think 3 or above will be the most verbose you can get.

Solution 2

Might be a bit late, but since I stumbled over the same question when setting up my GridSearch, I found this in the docstring in the deepest depths of the submodule sklearn\externals\joblib\parallel.py:

"The verbosity level: if non zero, progress messages are printed. Above 50, the output is sent to stdout. The frequency of the messages increases with the verbosity level. If it more than 10, all iterations are reported."

In addition, the Glossary (search for "verbose") says this:

"Logging is not handled very consistently in Scikit-learn at present, but when it is provided as an option, the verbose parameter is usually available to choose no logging (set to False). Any True value should enable some logging, but larger integers (e.g. above 10) may be needed for full verbosity. Verbose logs are usually printed to Standard Output. Estimators should not produce any output on Standard Output with the default verbose setting."

Share:
32,087
Gyan Veda
Author by

Gyan Veda

Hello. I am #SOreadytohelp!

Updated on July 09, 2022

Comments

  • Gyan Veda
    Gyan Veda almost 2 years

    Many scikit-learn functions have a verbose argument that, according to their documentation, "[c]ontrols the verbosity: the higher, the more messages" (e.g., GridSearchCV).

    Unfortunately, no guidance is provided on which integers are allowed (e.g., can a user set verbosity to 100?) and what level of verbosity corresponds to which integers. I cannot find this information anywhere in the documentation.

    My question is, which integers map to which levels of verbosity?