prasadpatil99 / Stock-Prediction-using-LSTM

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stock Market Prediction

To create Stock Market model using extended version of Recurrent Neural Network (RNN).
Extended version due to special feature capable of learning long term dependencies.
LSTMs are explicitly designed to avoid the long-term dependency problem which occurs in RNN as
Vanishing Gradient Problem.

ARIMA algorithm can be also trained for the same but yields better results in forecasting short term, where
as LSTMs have input gates that control whether or not the input at each time step is added to the cell state. This means that the LSTM can be trained to add a certain input to its cell state, and then never activate again, which preserves the cell state indefinitely.
In short LSTM have 10x more Long Term Memory than RNN.

Dataset can be found here

Reference

https://stackoverflow.com/questions/45435049
https://www.investopedia.com/terms/e/ema.asp

Author

  • Prasad Patil

About


Languages

Language:Jupyter Notebook 100.0%