How can I turn off the following output when calli...
# neural-forecast
a
How can I turn off the following output when calling the predict methods? Thanks The default for
verbose
is already
False
but I would prefer to suppress it further.
Copy code
def predict(
        self,
        df: Optional[pd.DataFrame] = None,
        static_df: Optional[pd.DataFrame] = None,
        futr_df: Optional[pd.DataFrame] = None,
        sort_df: bool = True,
        verbose: bool = False,
        **data_kwargs,
    ):