I was trying to a SARIMA model from python statsmodels as a pickle file. I wanted to convert the saved time series model into ONNX runtime format for real time edge inference. But I did not find any ways to do so? Is it possible to convert the saved model from pickle to ONNX runtime format?
Asked
Active
Viewed 630 times
0
-
There is no support to exporting any of the statsmodels models to other packages. – Kevin S Feb 25 '21 at 09:40
-
Is there any other workaround to do this? Like saving the statsmodel into pickle files or json dumps and then converting that to ONNX formats? – Aditya Bhattacharya Mar 03 '21 at 05:50
-
While you can pickle statsmodels models, I don't have any knowledge of how you might incorporate these into ONNX. – Kevin S Mar 03 '21 at 09:13