Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
wenfeiy-db committed Jan 18, 2024
1 parent 3751d79 commit 92fb2fd
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 92fb2fd

Please sign in to comment.