AutoViML / Auto_TS

Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Created by Ram Seshadri. Collaborators welcome.
Apache License 2.0
723 stars 113 forks source link

Trying to save the model! #65

Closed alicascar closed 2 years ago

alicascar commented 2 years ago

Hi, Is there anyway to save the created model?

I tried to use dill but still it didn't help!

import dill
dill.dump(model, open('auto_ts.pkl', 'wb'), byref=True)

I get the following error:

RecursionError: maximum recursion depth exceeded

Thanks in advance.

miggytrinidad commented 2 years ago

Were you able to solve this ?

AutoViML commented 2 years ago

Hi @miggytrinidad 👍

This has been solved - can you please check the following notebook for an example of how it works. https://github.com/AutoViML/Auto_TS/blob/master/example_notebooks/autots_multivariate_example.ipynb thx AutoViML