Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.13 KB

README.md

File metadata and controls

37 lines (29 loc) · 1.13 KB

Python 3.10 linting: pylint Tests

Real-time-sentiment-analysis

Analyse the user text input in real time and provide sentiment analysis along with visualization, charts.

Table of Contents

  1. Project Structure
  2. Installation

Project Structure

Here is an overview of the project structure:

    app
    ├── internal
    ├── nlp-models
        ├── notebook
        ├── saved-model # ignored
            ├── sent-model
        ├── src
    ├── routers
    ├── tests
    ------- # other files
    ├── README.md
    ├── requirements.txt

Installation

Create a virutalenv and install the required libraries from requirements.txt

    virutalenv venv
    venv\Scripts\activate
    pip install -r requirements.txt