Skip to content

Commit 838b910

Browse files
Merge pull request #2853 from smty2018/tweet-sentiment-nlp
Covid 19 Tweets Sentiment Analysis using NLP
2 parents bfcf806 + 98cb3e2 commit 838b910

File tree

3 files changed

+80320
-0
lines changed

3 files changed

+80320
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Description:
2+
a text classification model using a pipeline with a TF-IDF vectorizer(NLP) and a Linear Support Vector Classifier (LinearSVC).
3+
4+
Details
5+
The dataset : tweets about COVID-19, and the goal is to classify the sentiment of the tweets.
6+
A text sentiment analysis task using a machine learning pipeline. It loads a dataset of COVID-19 related tweets, preprocesses the data, and performs sentiment classification using a Linear Support Vector Classifier (LinearSVC) combined with TF-IDF vectorization. The code splits the dataset into training and testing sets, trains the model, makes predictions on the test set, and then visualizes the resulting confusion matrix using Seaborn's heatmap.
7+
8+
Requirements:
9+
pip install pandas scikit-learn seaborn jupyter numpy matplotlib

0 commit comments

Comments
 (0)