Submitted by AwayBobcat2273 t3_107xah8 in deeplearning
I am wanting to build a smallish personal project involving time-series forecasting and I would like to include AI forecasting into it.
Wonder if anyone has any experience or recommendations? Preferably I would like to just feed my time series historical data as an API and get back the forecasts. It is only 13 periods in the past and 13 periods of forecast times max 100 rows.
I was looking at some of the big cloud tech companies:
- Amazon Forecast
- Azure Time Series Insights
- IBM Watson Studio
- Google TensorFlow
Some of these look really expensive, like it would cost a few dollars just to do this which is 13 x 100 = 1,300 which I wouldn't think it would cost so much. Statistical time series forecasting this would be free. But I guess AI machine learning is way more expensive? Does anyone have any insights to share?
DustinEwan t1_j3pnwfz wrote
Time series is an extremely complex problem unless there's clear periodicity to the data.
In this case linear regression may be a better approach than deep learning.