Temporal Prediction System

From GM-RKB
(Redirected from forecasting system)
Jump to navigation Jump to search

A Temporal Prediction System is a predictive system that applies a forecasting algorithm to solve a forecasting task.



References

2014

  • https://algorithmia.com/algorithms/TimeSeries/Forecast
    • QUOTE: Gives a forecast the next n steps of a given time series based on extrapolation of linear and seasonal trends. It takes as input
      • time series as a double[].
      • number of time steps into the future to forecast.
      • maximum number of seasonal periods to consider.
    • Alternatively it takes just a time series, and defaults to a forecast range equal to the length of the original series and the single strongest seasonal trend.

      It returns the forecasted series as a double[]. This algorithm works by fitting a linear trend to the given data, extrapolating it into the future series interval, and then adjusting it based on the expected contributions of each detected seasonal component. Seasonality is detected using https://algorithmia.com/algorithms/TimeSeries/Autocorrelate.

2013

2002