-
Notifications
You must be signed in to change notification settings - Fork 447
Open
Labels
Description
What happened + What you expected to happen
This line
neuralforecast/neuralforecast/core.py
Line 542 in ff1566c
fcsts_df = fcsts_df.merge(df, how="left", on=["unique_id", "ds"]) |
tries to merge with
df
, which can be None
, so in that case it fails.
Originally reported here
Versions / Dependencies
1.6.4
Reproduction script
model = NeuralForecast(
[AutoNBEATS(**model_args)],
freq='D',
)
model.fit(df=data, val_size=horizon)
crossvalidation_df = model.cross_validation()
Issue Severity
Low: It annoys or frustrates me.