verbose option for fit model #237
-
Hello, in the fit function I don't see a verbose option to remove the epoch progress bar. Do you know of another way? thank you in advance |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
The fit function has the option use_tqdm=False which you can use to do this. The name of the option might be a bit confusing but that can basically let you get rid of the progress bar. This is set to True by default. |
Beta Was this translation helpful? Give feedback.
-
@FABoulanger in addition, you can set the general verbosity of all outputs to a certain level of your choosing by setting
|
Beta Was this translation helpful? Give feedback.
-
Both of those don't work for me. There's still progress bars being plotted :/ Even manually removing tqdm from the source does not seem to help. I guess there's an external dependency somewhere? |
Beta Was this translation helpful? Give feedback.
The fit function has the option use_tqdm=False which you can use to do this. The name of the option might be a bit confusing but that can basically let you get rid of the progress bar. This is set to True by default.