Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sunnyallana/sentiment-analysis
https://github.com/sunnyallana/sentiment-analysis
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sunnyallana/sentiment-analysis
- Owner: sunnyallana
- License: mit
- Created: 2024-01-15T20:01:41.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-16T12:23:09.000Z (10 months ago)
- Last Synced: 2024-01-17T06:27:11.648Z (10 months ago)
- Language: Python
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Sentiment Analysis using Watson NLP (BERT) - Flask Application
**Author: Sunny Allana**
**GitHub: [Sunny Allana](https://github.com/sunnyallana/)**
**LinkedIn: [Sunny Allana](https://www.linkedin.com/in/sunnyallana/)**
**Instagram: [Sunny Allana](https://www.instagram.com/imsunnyallana/)**## Introduction
This repository contains a simple Flask web application for sentiment analysis using the Watson Natural Language Processing (NLP) service with BERT models. The application allows users to input text, and it provides sentiment analysis results based on the provided text.## Requirements
Make sure you have the following requirements installed before running the application:
- Python 3.x
- Flask
- requestsYou can install the required Python packages using the following command:
```bash
pip install Flask requests
```## Getting Started
### 1. Clone the Repository
```bash
git clone https://github.com/sunnyallana/sentiment-analysis.git
cd sentiment-analysis
```### 2. Set up a Virtual Environment (Optional but Recommended)
```bash
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
```### 3. Install Required Packages
```bash
pip install -r requirements.txt
```### 4. Run the Flask Application
```bash
python server.py
```#### The application will be accessible at http://127.0.0.1:5000/ in your web browser.
## Usage
1. Open your web browser and navigate to [http://127.0.0.1:5000/](http://127.0.0.1:5000/).
2. Enter the text you want to analyze in the input field and submit the form.
3. View the sentiment analysis result, which includes the sentiment label and score.## Files and Structure
- **server.py:** Flask application file containing the server logic.
- **SentimentAnalysis/sentiment_analysis.py:** Module for interacting with the Watson NLP service and performing sentiment analysis.
- **tests/test_sentiment_analysis.py:** Unit tests for the sentiment analysis module.
- **index.html:** HTML template for the web application.## Watson NLP Configuration
The sentiment analysis is performed using the Watson NLP service with BERT models. Make sure you have the appropriate credentials and endpoint configured in `sentiment_analysis.py`. Update the `url` and `header` variables in the file accordingly.## Unit Tests
To run the unit tests, use the following command:
```bash
python -m unittest discover tests
```## Contributing
Feel free to contribute to the project by submitting issues or pull requests. Follow the guidelines outlined in CONTRIBUTING.md.## License
This project is licensed under the MIT License - see the LICENSE.md file for details.