About saving the model and load it to predict
kennis222 opened this issue · 2 comments
kennis222 commented
Hi contributor,
I have followed the example instruction to save the model. After loading it to predict, it seems that the loading model does not display "predicted" results. The results of the second screenshot are the desired results, but the loading model does not perform the same. I am not sure which part I need to fix. Thank you.
AutoViML commented
Hi @kennis222 👍
Your observation is correct. There may be one of two reasons for that oddity:
-
You might want to check if
best_model
indeed is a VAR model object. It may not be. But make sure. -
The
predict()
function does a few steps to preprocess the data before feeding to a VAR model. That might be the reason for the change.
Please check and let me know
AutoViML
kennis222 commented