From 92fb2fdfc46bc04e6b3e9095546babc7aecfafdb Mon Sep 17 00:00:00 2001 From: wenfeiy-db Date: Wed, 17 Jan 2024 22:03:28 -0800 Subject: [PATCH] remove print --- runtime/databricks/automl_runtime/forecast/prophet/model.py | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/databricks/automl_runtime/forecast/prophet/model.py b/runtime/databricks/automl_runtime/forecast/prophet/model.py index c3af2bc0..c5ea663b 100644 --- a/runtime/databricks/automl_runtime/forecast/prophet/model.py +++ b/runtime/databricks/automl_runtime/forecast/prophet/model.py @@ -239,7 +239,6 @@ def predict_timeseries(self, horizon: int = None, include_history: bool = True) identity_column_names=self._id_cols ) future_df["ts_id"] = future_df[self._id_cols].apply(tuple, axis=1) - print(f"predict_timeseries::future_df:\n {future_df}") return future_df.groupby(self._id_cols).apply( lambda df: self._predict_impl(df, horizon, include_history) ).reset_index(drop=True)