ZENLLC commited on
Commit
0d08808
·
verified ·
1 Parent(s): d18b530

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -5
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 🧐
4
  colorFrom: blue
5
  colorTo: green
6
  sdk: gradio
7
- sdk_version: 5.13.1
8
  app_file: app.py
9
  pinned: false
10
  ---
@@ -12,13 +12,19 @@ pinned: false
12
  # Text Sentiment Analyzer
13
 
14
  ## Overview
15
- This application uses a pre-trained Hugging Face transformer model to perform sentiment analysis on user-provided text.
16
 
17
  ## Features
18
  - Input: Free text.
19
- - Output: Sentiment analysis result, including the label (positive, negative, or neutral) and confidence score.
 
 
 
 
 
 
20
 
21
  ## How to Use
22
  1. Enter any text into the input box.
23
- 2. Click the analyze button.
24
- 3. View the sentiment result and confidence score.
 
4
  colorFrom: blue
5
  colorTo: green
6
  sdk: gradio
7
+ sdk_version: "5.13.1"
8
  app_file: app.py
9
  pinned: false
10
  ---
 
12
  # Text Sentiment Analyzer
13
 
14
  ## Overview
15
+ A simple Gradio application that uses a Hugging Face transformer model to analyze the sentiment of user-provided text. It returns whether the sentiment is positive, negative, or neutral, along with a confidence score.
16
 
17
  ## Features
18
  - Input: Free text.
19
+ - Output: Sentiment label and confidence score.
20
+ - Based on Hugging Face transformers and Gradio for a smooth user experience.
21
+
22
+ ## Requirements
23
+ - gradio==5.13.1
24
+ - transformers==4.30.2
25
+ - torch==2.0.1
26
 
27
  ## How to Use
28
  1. Enter any text into the input box.
29
+ 2. Click the button to analyze.
30
+ 3. View the sentiment result and confidence score.