File size: 784 Bytes
24cebfb
 
 
 
 
 
 
 
 
 
 
a07549e
 
24cebfb
 
 
 
 
 
 
 
 
a07549e
24cebfb
 
 
 
a07549e
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
title: Sentiment Analysis
emoji: 🤖
colorFrom: blue
colorTo: purple
sdk: gradio
sdk_version: 4.19.2
app_file: app.py
pinned: false
---

# Text Sentiment Analysis

This application performs sentiment analysis on text input using the TextBlob library. It provides:
- Polarity score (positive/negative sentiment)
- Subjectivity score (objective/subjective content)
- Overall assessment of the text

## How to Use
1. Enter your text in the input box
2. Click "Submit"
3. View the sentiment analysis results

The results will show:
- Polarity: Ranges from -1 (negative) to 1 (positive)
- Subjectivity: Ranges from 0 (objective) to 1 (subjective)
- Assessment: A text description of the sentiment

## Technologies Used
- Gradio for the web interface
- TextBlob for sentiment analysis