historical_forecasts()
retrains with brand-new model instances
#1461
Labels
bug
Something isn't working
historical_forecasts()
retrains with brand-new model instances
#1461
Is your feature request related to a current problem? Please describe.
historical_forecasts()
retrains the same model instance on the new training section instead of using a brand-new model instance.Additional context
The example code below shows that
historical_forecasts()
gives the same results as calling thefit()
method multiple times on the same model instance. However, I would expect the outputs ofhistorical_forecasts()
to be the same as fitting a brand-new model instance, with the same parameters, on each training section.Result
Describe proposed solution
Save the model before any training, and load the untrained model before retraining.
Alternatively, reset the model to its initial weights before retraining.
The text was updated successfully, but these errors were encountered: