Update README.md
Browse filesupdated readme file
README.md
CHANGED
@@ -1,19 +1,30 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
All required packages are listed in `requirements.txt`
|
|
|
1 |
+
---
|
2 |
+
title: Movie Review Sentiment Analysis
|
3 |
+
emoji: π¬
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: purple
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 3.50.0
|
8 |
+
app_file: gradio_app.py
|
9 |
+
pinned: false
|
10 |
+
---
|
11 |
+
|
12 |
+
# Movie Review Sentiment Analysis
|
13 |
+
|
14 |
+
This is a sentiment analysis model that predicts whether a traveller's review is positive or negative. The model uses TF-IDF vectorization and a trained classifier to make predictions.
|
15 |
+
|
16 |
+
## How to Use
|
17 |
+
|
18 |
+
1. Enter your review in the text box
|
19 |
+
2. Click "Analyze Sentiment"
|
20 |
+
3. The model will predict whether the review is positive or negative
|
21 |
+
|
22 |
+
## Model Details
|
23 |
+
|
24 |
+
- Uses TF-IDF vectorization for text preprocessing
|
25 |
+
- Trained on movie review data
|
26 |
+
- Returns either "Positive Review π" or "Negative Review π"
|
27 |
+
|
28 |
+
## Requirements
|
29 |
+
|
30 |
All required packages are listed in `requirements.txt`
|