Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bhuvan588/microsoft-stock-price-prediction-using-lstm

Univariate Stock price prediction using LSTM (Long Short Term Memory).
https://github.com/bhuvan588/microsoft-stock-price-prediction-using-lstm

deep-learning keras lstm rnn stock-price-prediction tensorflow

Last synced: 5 days ago
JSON representation

Univariate Stock price prediction using LSTM (Long Short Term Memory).

Awesome Lists containing this project

README

        

# Microsoft-Stock-Price-prediction-using-LSTM

In this mini project I explored LSTM (Long Short Term Memory) and its use cases . The aim was to predict stock prices for a company's stock (here Micosoft)

![image](https://github.com/user-attachments/assets/298b5cc6-c561-4e3e-a3fc-f220786a14e5)

## Project Need

LSTM can be used to predict stock prices, classify fake news and even generate text.

A short overview about LSTM

LSTM was used to overcome the vanishing gradients problem of RNN which meant RNN couldn't capture the context of any word for long sentences.

Even after using DropOut and BatchNormalization the problem couldn't be solved so LSTM was proposed.

It uses 3 types of gates - forget, input and output for deciding what info must be forgot, what must info must be added to cell state and what will be the output respectively.