How can i continue training a model that i saved ...
# neural-forecast
d
How can i continue training a model that i saved e.g. with LSTM
j
If you used
NeuralForecast.save
you can use
NeuralForecast.load
and then just call
NeuralForecast.fit
again
👀 1
d
wow! thx a lot!
do I still pass to it the data Y_df
nf.cross_validation(Y_df, n_windows=folds,val_size=15,refit=False)
? provided the nf.save also saved the dataset
j
If you saved the dataset and want to use the same one you don't need to provide it
👍 1