Ryan J
Ryan J

Reputation: 31

What is a Verbose Output?

I am currently using the GridSearchCV object in python. The function call gives an me option to specify the verbosity. Does anyone know what verbose means in this context? I have not found the documentation to be helpful in this respect. Help on clarifying what this is and what it is used for would be helpful.

Upvotes: 2

Views: 9880

Answers (2)

Herc01
Herc01

Reputation: 622

Verbose is just the info you want to be printed when your Gridsearch is running. Just trying to change it (try 2, or 3) you will see for yourself.

Upvotes: 2

amyiris
amyiris

Reputation: 113

Verbosity means how much extra info you want the script to give. In your instance, it likely means how much information it should return to you, whether it be the absolute basic query or detailed information about searches; it can also control the amount of results given.

Upvotes: 3

Related Questions