Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to suppress "Build Progress" bar when training an h2o model?

I'm tuning my parameters by testing many models, and I'm fairly annoyed that I can't do much about the "Build Progress" bars that are cluttering up my iPython Notebook. I've skimmed the docs looking for some sort of "verbose" setting to turn off, but can't find it. Is there any way to turn this off when I want to train and evaluate dozens of models at once?

like image 742
James Kelleher Avatar asked Oct 25 '17 16:10

James Kelleher


1 Answers

The function you're looking for is called h2o.no_progress() and it shuts off all progress bars in your session. If you search the Python module docs for "progress", you'll find it.

like image 171
Erin LeDell Avatar answered Oct 17 '22 01:10

Erin LeDell