From 04bfa902e03963951f074e77a5d52cc193001a0f Mon Sep 17 00:00:00 2001 From: ourownstory Date: Thu, 12 Sep 2024 17:12:11 -0700 Subject: [PATCH] finish fixes --- neuralprophet/df_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neuralprophet/df_utils.py b/neuralprophet/df_utils.py index 5240d00a1..0252fdf72 100644 --- a/neuralprophet/df_utils.py +++ b/neuralprophet/df_utils.py @@ -708,7 +708,7 @@ def crossvalidation_split_df( validation data """ # df = df.copy(deep=True) - # df, _, _, _ = check_multiple_series_id(df) + df, _, _, _ = check_multiple_series_id(df) folds = [] if len(df["ID"].unique()) == 1: for df_name, df_i in df.groupby("ID"):