Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.62 KB

README.md

File metadata and controls

38 lines (26 loc) · 1.62 KB

Speech Sentiment Analysis

This project uses Google Chrome speech recognition and Azure sentiment analysis to understand speech through browser and make a sentiment analysis with the help of Azure Text Analysis API.

Running the code

What you will need

Creating your Text Analytics Key

Follow the instructions in Microsoft Documentation.

Running with Node

  • Install nodejs.
  • Go to the project directory using a terminal / shell.
  • Install dependencies npm install
  • Run the app npm start
  • Open browser in http://localhost:8000

Running with Docker

  • Install docker.
  • Go to the project directory using a terminal / shell.
  • Build the app docker build -t speech-sentiment . (this is an optional step on the first time)
  • Run the app docker run -it -p 8000:8000 speech-sentiment
  • Open browser in http://localhost:8000

Running with Docker Compose

  • Install docker.
  • Go to the project directory using a terminal / shell.
  • Build the app docker-compose build (this is an optional step on the first time)
  • Run the app docker-compose up
  • Open browser in http://localhost:8000