Closed chintanp closed 5 years ago
As an evolution of artificial neural network (ANN)-based prediction methods, deep learning techniques are expected to increase the prediction accuracy by allowing higher levels of abstraction. In this paper, we investigate two newly developed stochastic models for time series prediction of energy consumption, namely Conditional Restricted Boltzmann Machine (CRBM) and Factored Conditional Restricted Boltzmann Machine (FCRBM). The assessment is made on a benchmark dataset consisting of almost four years of one minute resolution electric power consumption data collected from an individual residential customer. The results show that for the energy prediction problem solved here, FCRBM outperforms ANN, Support Vector Machine (SVM), Recurrent Neural Networks (RNN) and CRBM.
https://www-sciencedirect-com.offcampus.lib.washington.edu/science/article/pii/S2352467716000163
The empirical studies conducted and reported in this article show that deep learning-based algorithms such as LSTM outperform traditional-based algorithms such as ARIMA model. More specifically, the average reduction in error rates obtained by LSTM is between 84 - 87 percent when compared to ARIMA indicating the superiority of LSTM to ARIMA. Furthermore, it was noticed that the number of training times, known as "epoch" in deep learning, has no effect on the performance of the trained forecast model and it exhibits a truly random behavior.
ARIMA vs. RNN
" If you’ve got the time to read a ~20 page research paper that covers this exact topic (ARIMA vs. RNNs) as it applies to forecasting aviation time series - please check out this survey paper that I’ve written and posted on GitHub. If you want to dig deeper, feel free to explore the Jupyter Notebooks and data that I scraped from the US DOT and included in the repo. It was a lot of work and I’ve licensed it so that anyone can do anything with it now. It will save you A LOT of time if you are trying to spin up RNNs for a time series problem on your own. If you want to go even further, check out this repo of the first place solution to a Kaggle competition on time series that took place last year. The winner’s solution involved a much more sophisticated RNN architecture than the one I used for my project, and he was certainly awarded handsomely for it. It was the most important inspiration for my work so I’m happy to refer it researchers and engineers interested in these kinds of problems."
https://github.com/shellshock1911/Sky-Cast-Capstone/tree/master/notebooks
ARIMA for power consumption of a household
It is a multivariate series comprised of seven variables (besides the date and time); they are:
ARIMA was used for load forecasting and GAN was used for load synthesis.