verbose option for fit model #237
Answered
by
HansikaPH
FABoulanger
asked this question in
Q&A - get help using NeuralProphet
|
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 |
Answered by
HansikaPH
Jan 6, 2021
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. |
0 replies
Answer selected by
ourownstory
|
@FABoulanger in addition, you can set the general verbosity of all outputs to a certain level of your choosing by setting |
0 replies
|
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? |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.