└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Google-Stock-Price-Prediction-Using-RNN---LSTM 2 | Google Stock Price Prediction Using RNN - LSTM 3 | 4 | Download the working file: https://github.com/laxmimerit/Google-Stock-Price-Prediction-Using-RNN---LSTM 5 | 6 | ### What is RNN 7 | Recurrent Neural Networks can Memorize/remember previous inputs in-memory When a huge set of Sequential data is given to it. 8 | 9 | These loops make recurrent neural networks seem kind of mysterious. However, if you think a bit more, it turns out that they aren’t all that different than a normal neural network. A recurrent neural network can be thought of as multiple copies of the same network, each passing a message to a successor. 10 | 11 | Different types of Recurrent Neural Networks. 12 | 13 | - Image Classification 14 | - Sequence output (e.g. image captioning takes an image and outputs a sentence of words). 15 | - Sequence input (e.g. sentiment analysis where a given sentence is classified as expressing a positive or negative sentiment). 16 | - Sequence input and sequence output (e.g. Machine Translation: an RNN reads a sentence in English and then outputs a sentence in French). 17 | - Synced sequence input and output (e.g. video classification where we wish to label each frame of the video) 18 | 19 | 20 | ### Like Facebook Page: 21 | https://www.facebook.com/kgptalkie/ 22 | 23 | ## Watch Full Playlists: 24 | ### Deep Learning with TensorFlow 2.0 Tutorials 25 | https://www.youtube.com/watch?v=JHNX5ugPa7s&list=PLc2rvfiptPSR3iwFp1VHVJFK4yAMo0wuF 26 | 27 | ### Feature Selection in Machine Learning using Python 28 | https://www.youtube.com/playlist?list=PLc2rvfiptPSQYzmDIFuq2PqN2n28ZjxDH 29 | 30 | ### Machine Learning with Theory and Example 31 | https://www.youtube.com/playlist?list=PLc2rvfiptPSTvPFbNlT_TGRupzKKhJSIv 32 | 33 | ### Make Your Own Automated Email Marketing Software in Python 34 | https://www.youtube.com/watch?v=gmYuom6kfoY&list=PLc2rvfiptPSQK9ErKaLqf40iu1A3le9Zr 35 | --------------------------------------------------------------------------------