https://github.com/akashbhuiyan/sentiment-analysis-bangla-language
Sentiment analysis of bangla language.
https://github.com/akashbhuiyan/sentiment-analysis-bangla-language
opinion-mining opinion-mining-bangla-text sentiment-analysis sentiment-analysis-bangla-text sentiment-analysis-data-cleaning sentiment-analysis-dataset sentiment-classification
Last synced: 16 days ago
JSON representation
Sentiment analysis of bangla language.
- Host: GitHub
- URL: https://github.com/akashbhuiyan/sentiment-analysis-bangla-language
- Owner: AkashBhuiyan
- License: mit
- Created: 2020-05-14T13:53:12.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-28T16:32:32.000Z (almost 5 years ago)
- Last Synced: 2023-09-06T14:09:16.868Z (over 1 year ago)
- Topics: opinion-mining, opinion-mining-bangla-text, sentiment-analysis, sentiment-analysis-bangla-text, sentiment-analysis-data-cleaning, sentiment-analysis-dataset, sentiment-classification
- Language: Jupyter Notebook
- Homepage:
- Size: 580 KB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sentiment Analysis of Bangla Language
Here, I describe a system that can classify opinion of different sentiment from Bangla text. The data has manually built on Bangla text corpus by Facebook graph api from Facebook page Bangla newspaper Prothom Alo. Then the 80% of total sentences is used for training and the remaining 20% for testing the classifiers. There are 3 categories are used as labels. They are positive(pos), negative(neg) and neutral. N-Gram approach is used for vectorization. The total dataset length is 2419 rows.
### Create environment by conda
> conda create -n sa python=3.6
> conda activate sa### Installation:
> pip install sklearn==0.22.2
> pip install numpy==1.18.2
> pip install scipy==1.4.1
> pip install pandas==0.24.2
> pip install matplotlib==2.2.2
> pip install seaborn==0.9.0
> pip install yellowbrick==1.1
> pip install pydot==1.4.1#### Note:
Here I have been described about how doing sentiment analysis of Bangla language. I did not do any optimization here.