Tag Archives: LSTM

Prediction of Google Stocks Price

In this project, we are going to predict the stocks price of Alphabet Inc. The data contains the stocks price of Google from 2010 to 2019. This project will be implemented by Recurrent Neural Network and LSTM using Python. The data contains the following columns: Date Open High Low Close Volume . let’s get our environment ready with the libraries we’ll need and then import the data! Check out the Data Let’s extract the Open …

Prediction of Movie Opinions

In this project, we are going to make a Recurrent Neural Network for understanding the reviews of the users and extract the meaningful information behind them to figure out whether the user liked the movie or not. In the other words, the aim of this project is to classify the user movie reviews into positive and negative reviews. we are going to use Recurrent Neural Network using Keras to solve this problem . let’s get …