Spaces:
Sleeping
Sleeping
Update README.md
Browse files
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 |
-
|
16 |
|
17 |
## Features
|
18 |
- Input: Free text.
|
19 |
-
- Output: Sentiment
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
## How to Use
|
22 |
1. Enter any text into the input box.
|
23 |
-
2. Click the analyze
|
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.
|