├── .ipynb_checkpoints └── multi_class_sentiment_analysis-checkpoint.ipynb ├── LICENSE ├── README.md ├── data ├── data.zip ├── p_test.csv └── p_train.csv ├── images ├── encoding2.jpg ├── lrelu.jpg ├── snip1.JPG ├── snip10.JPG ├── snip11.JPG ├── snip2.JPG ├── snip3.JPG ├── snip4.JPG ├── snip5.JPG ├── snip6.JPG ├── snip7.JPG ├── snip8.JPG └── snip9.JPG └── multi_class_sentiment_analysis.ipynb /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Aman Deep Singh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # multi-class-sentiment-analysis 2 | The repository for [my blog](https://medium.com/@ad71/roadmap-for-multi-class-sentiment-analysis-with-deep-learning-36f86a0185d2) on Medium about multi-class sentiment analysis. 3 | -------------------------------------------------------------------------------- /data/data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/data/data.zip -------------------------------------------------------------------------------- /images/encoding2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/encoding2.jpg -------------------------------------------------------------------------------- /images/lrelu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/lrelu.jpg -------------------------------------------------------------------------------- /images/snip1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip1.JPG -------------------------------------------------------------------------------- /images/snip10.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip10.JPG -------------------------------------------------------------------------------- /images/snip11.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip11.JPG -------------------------------------------------------------------------------- /images/snip2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip2.JPG -------------------------------------------------------------------------------- /images/snip3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip3.JPG -------------------------------------------------------------------------------- /images/snip4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip4.JPG -------------------------------------------------------------------------------- /images/snip5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip5.JPG -------------------------------------------------------------------------------- /images/snip6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip6.JPG -------------------------------------------------------------------------------- /images/snip7.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip7.JPG -------------------------------------------------------------------------------- /images/snip8.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip8.JPG -------------------------------------------------------------------------------- /images/snip9.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad71/multi-class-sentiment-analysis/5ea987c1ff1c4c161d4fac16377f9158bf856328/images/snip9.JPG --------------------------------------------------------------------------------