An open API service indexing awesome lists of open source software.

https://github.com/olahsymbo/sentiment-analysis-bert

BERT model based sentiment analysis of tweets
https://github.com/olahsymbo/sentiment-analysis-bert

bert keras python sentiment-analysis tfidfvectorizer tweets

Last synced: about 1 month ago
JSON representation

BERT model based sentiment analysis of tweets

Awesome Lists containing this project

README

          

## Sentiment_Analysis

Project on Sentiment Analysis of tweets. Tweets are classified into positive, negative, and neutral sentiments with Bayesian and Random Forest Classifier. TfidfVectorizer is used for encoding after tweet preprocessing and STOP WORDS extraction

### Guidelines

- Use the dataset in SentimentData.csv which contains Positive, Negative, and Neutral Tweets.

- Filter Tweets to remove @ # RT

- Use TfidfVectorizer to encode (extract features) the clean Tweets

- Predict using Naive Bayes Classifier or Random Forest.