0

I am working on a grid search that will have 135 candidates, totalling 405 fits.

enter image description here

Questions:

codebrotherone
  • 541
  • 6
  • 22

1 Answers1

1

If you look at the implementation of GridSearchCV you can see it creates the object Parallel. The comments inside the implementation of Parallel explain how verbose parameter has been used:

'''
verbose: int, optional
        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.
'''

Since you are using a batch_size=5, ETA says the time that each batch needs.

Basically, GridSearchCV documentation explains that by using verbose parameter you can choose whether visualize the log or not. Then, if you increase verbose you get an higher "refreshing rate" of your training process.

Alessandro
  • 742
  • 1
  • 10
  • 34