I created Simple Text Classification using LSTM (Long Short Term Memory) on IMDB movie review sentiment classification dataset, which I have implemented using Keras.
If you want to more clear explonation, see my blog Simple Text Classification using LSTM for Beginners
To run the web app on your local computer, install the required libraries, These packages are included in requirement.txt. In this project used Python3.8.0.
Run the following command in terminal to install the required packages.
pip install -r requirement.txt
or
If you use jupyter notebook run the following command in anaconda prompt terminal to install the required packages.
conda install --file requirements.txt
We create model for simple text classification using LSTM. It is type of deep learning networks. It is variation of reccurent neural network. In this neural network, has feedback connections.
MIT License