Slackbot
12/07/2023, 6:10 AMJosé Morales
12/07/2023, 4:51 PMdf
argument of predict. Otherwise you can set h=8 and ignore the first 4 values.
• If you have historic and future values of a feature you have to add it to futr_exog_list
when instantiating the model and then provide it through futr_df
when predicting. The difference between historic and future exogenous is how many samples we provide the model (for historic it's input_size and for future is input_size + h).lobbie lobbie
12/07/2023, 10:17 PMdf
in the predict argument, I will need to provide data in df
containing train (WK1 to WK35) + unseen (WK31 to WK35) + horizon (WK36 to WK40)?
Thanks.José Morales
12/07/2023, 10:24 PMdf
and WK36 to WK40 through futr_df
lobbie lobbie
12/07/2023, 10:34 PMdf
in the nfc.fit()
argument?José Morales
12/07/2023, 10:35 PMlobbie lobbie
12/07/2023, 10:39 PM1. Training ->nfc.fit(df=df_WK1_WK30)
2. Prediction ->?nfc.predict(df=df_WK1_WK35, futr_df=df_WK36_WK40)
José Morales
12/07/2023, 10:39 PMlobbie lobbie
12/07/2023, 10:40 PMlobbie lobbie
12/08/2023, 6:47 AMdf
in the nfc.predict() argument worked. Thanks again.