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

https://github.com/saajann/sentiment-analysis

Basic Sentiment Analysis
https://github.com/saajann/sentiment-analysis

machine-learning python sentiment-analysis sklearn streamlit

Last synced: about 2 months ago
JSON representation

Basic Sentiment Analysis

Awesome Lists containing this project

README

          

# Sentiment Analysis Project

## Overview
This project involves building a sentiment analysis model to classify text as positive or negative using machine learning techniques.

## Project Structure
```
/sentiment-analysis/
├── README.md
├── app.py
├── data
│ └── sentiment_dataset.csv
├── model
│ └── train_model.py
├── sentiment_model.pkl
├── vectorizer.pkl
└── requirements.txt
```

## Installation and Usage

To get started with the project, follow these steps:

1. **Clone the repository:**
```sh
git clone https://github.com/saajann/sentiment-analysis.git
```

2. **Navigate to the project directory:**
```sh
cd sentiment-analysis
```

3. **Install the required dependencies:**
```sh
pip install -r requirements.txt
```

4. **Run the Streamlit application:**
```sh
streamlit run app.py
```