A web app that allows users to analyze the sentiment of any text input, like product reviews, social media comments, and customer service feedback. The tool uses Natural Language Processing techniques to determine the emotional tone of text, providing valuable metrics on sentiment polarity, subjectivity, and compound sentiment scores which helps classifies the text as positive, negative, or neutral.
Users need a simple, intuitive app that allows them to quickly paste text and receive accurate sentiment analysis. This enables them to make timely, informed decisions for business, personal use, or research.
The following are the target audiences:
- Social Media Influencers
- Bloggers and Writers
- Marketing Teams
- Market Researchers
- Customer Service Teams
- Small to Medium Enterprises
- General Consumers
- Text preprocessing pipeline to clean and normalize raw text with contraction expansion, spell checking, and tokenization.
- Multi-dimensional sentiment analysis that combines two analytical approaches of VADER and TextBlob, with VADER calculating the positive, negative, neutral, and compound sentiment scores and TextBlob determining the subjectivity score to measure opinion vs. fact-based content.
- Visual analytics with styled dataframe highlighting sentiment metrics
-
Batch Processing to handle CSV and Excel file upload containing multiple text entries
-
Interactive UI with progress indicators during batch processing
-
Download sentiment analysis results data
-
Multiple data visualization options available:
- Styled DataFrames: Color-coded tables highlighting sentiment metrics
- Word Clouds: Visual representations of frequent terms with stopword filtering
- Pie Charts: Interactive charts showing the distribution of sentiment types
- Users can input text directly or upload CSV/Excel files containing text data
- The system processes the input through the preprocessing pipeline
- Sentiment analysis is performed, generating comprehensive metrics
- Results are displayed in styled tables and visualizations
- For batch processing, a progress bar tracks completion status
Frontend | Backend | Machine Learning |
---|---|---|
Streamlit | Python | NLTK |
HTML | Pandas | TextBlob |
CSS | VADER |
streamlit
textblob
nltk
contractions
pyspellchecker
vaderSentiment
pandas
matplotlib
openpyxl
plotly
wordcloud