Silence INFO messages #1230
-
Hi, is there a common way to silence INFO in the fit method : INFO - (NP.df_utils._infer_frequency) I am running a RandimozedSearchCV, and all the itermediate prints of neuralprophet are not helping track of the progress of the fine tuning process. Thanks for any advice, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@MchlUh you can set the log level to from neuralprophet import set_log_level
set_log_level("ERROR") |
Beta Was this translation helpful? Give feedback.
@MchlUh you can set the log level to
WARNING
orERROR
with the following snippet to hideINFO
log entries.