Reputation: 35
I have created an ARIMA model for time-series forecasting and want to deploy it so as to use it at the API endpoint. But I am unable to find a way to deploy it on AWS SageMaker, how can I deploy it. I don't want to use DeepAR. Or is there any way to deploy the pickle file on SageMaker?
Upvotes: 1
Views: 1089
Reputation: 48287
You can use Amazon Forecast, which has ARIMA built in
Or, if you prefer SageMaker, you need to build your own Docker container, publish it to ECR, and then use that
Upvotes: 1