├── .devcontainer └── devcontainer.json ├── .github └── workflows │ └── pylint.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── requirements.txt ├── sentement-analysis-lstm.ipynb ├── sentiment_lstm_model.h5 └── tokenizer.pkl /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/requirements.txt -------------------------------------------------------------------------------- /sentement-analysis-lstm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/sentement-analysis-lstm.ipynb -------------------------------------------------------------------------------- /sentiment_lstm_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/sentiment_lstm_model.h5 -------------------------------------------------------------------------------- /tokenizer.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/LSTMEmotion-Sentiment-Analytics/HEAD/tokenizer.pkl --------------------------------------------------------------------------------